mirror of
https://github.com/byteworksinc/DumpObj.git
synced 2024-10-31 23:05:20 +00:00
fix entry opcode.
This commit is contained in:
parent
ebab9328f6
commit
95226d0e34
@ -1155,7 +1155,8 @@ else switch (opcode) {
|
|||||||
DoExpr();
|
DoExpr();
|
||||||
break;
|
break;
|
||||||
case OPENTRY: /* handle entry opcode */
|
case OPENTRY: /* handle entry opcode */
|
||||||
printf("ENTRY ($F4) | ");
|
p1 = fgeti(input);
|
||||||
|
printf("ENTRY ($F4) | %02X :", (int)p1);
|
||||||
PutNumber();
|
PutNumber();
|
||||||
printf(" : ");
|
printf(" : ");
|
||||||
PutSymbol();
|
PutSymbol();
|
||||||
@ -2014,7 +2015,8 @@ switch(op) {
|
|||||||
count = count + 6;
|
count = count + 6;
|
||||||
break;
|
break;
|
||||||
case OPENTRY: /* handle entry opcode */
|
case OPENTRY: /* handle entry opcode */
|
||||||
printf("! ENTRY ($F4) | ");
|
p1 = fgeti(input);
|
||||||
|
printf("! ENTRY ($F4) | %02X :", (int)p1);
|
||||||
PutNumber();
|
PutNumber();
|
||||||
printf(" : ");
|
printf(" : ");
|
||||||
PutSymbol();
|
PutSymbol();
|
||||||
|
Loading…
Reference in New Issue
Block a user