[Exspiminator-commits] CVS: exspiminator/gui GUI.java,1.24,1.25
Status: Alpha
Brought to you by:
nphillips
|
From: Nigel P. <nph...@us...> - 2001-11-23 10:50:17
|
Update of /cvsroot/exspiminator/exspiminator/gui
In directory usw-pr-cvs1:/tmp/cvs-serv24016/gui
Modified Files:
GUI.java
Log Message:
Switch from InstructionEncoders to assembler subclasses.
Index: GUI.java
===================================================================
RCS file: /cvsroot/exspiminator/exspiminator/gui/GUI.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -r1.24 -r1.25
*** GUI.java 2001/11/22 11:59:10 1.24
--- GUI.java 2001/11/23 10:50:14 1.25
***************
*** 400,410 ****
in.read(source, 0, (int) fileLength);
! NewAssembler asm=new NewAssembler(
! SimplifiedPowerPCInstructionSet.getInstructionSet());
! //System.err.println(pp.getLabelTable().toString());
try
{
byte[] code=asm.assemble(new String(source));
- //(new String(data), pp.getLabelTable());
if (asm.hasWarnings())
{
--- 400,407 ----
in.read(source, 0, (int) fileLength);
! NewAssembler asm=new PowerPCAssembler();
try
{
byte[] code=asm.assemble(new String(source));
if (asm.hasWarnings())
{
|