I am trying to merge the Java assembly code (using Jasmin (an assembler interface in java)) with standard Java code.Like this
public class SomeClass{
public void testPrinting(){
System.out.println("Hello World");
}
.method public myMethod()V
//Some work
.end method
}
Is this possible?