mirror of
https://github.com/dschmenk/PLASMA.git
synced 2025-01-22 08:31:36 +00:00
Update images
This commit is contained in:
parent
0045d0eabb
commit
852b5b7268
BIN
PLASMA-BLD2.PO
BIN
PLASMA-BLD2.PO
Binary file not shown.
BIN
PLASMA-DEM2.PO
BIN
PLASMA-DEM2.PO
Binary file not shown.
BIN
PLASMA-SOS2.PO
BIN
PLASMA-SOS2.PO
Binary file not shown.
BIN
PLASMA-SYS2.PO
BIN
PLASMA-SYS2.PO
Binary file not shown.
@ -1518,7 +1518,7 @@ int crunch_seq(t_opseq **seq, int pass)
|
||||
op->code = IDXLB_CODE;
|
||||
freeops = 1;
|
||||
}
|
||||
if ((pass > 0) && (freeops == 0))
|
||||
else if (pass > 0)
|
||||
crunched = try_dupify(op);
|
||||
break; // LLB_CODE
|
||||
case LLW_CODE:
|
||||
@ -1546,7 +1546,7 @@ int crunch_seq(t_opseq **seq, int pass)
|
||||
op->code = IDXLW_CODE;
|
||||
freeops = 1;
|
||||
}
|
||||
if ((pass > 0) && (freeops == 0))
|
||||
else if (pass > 0)
|
||||
crunched = try_dupify(op);
|
||||
break; // LLW_CODE
|
||||
case LAB_CODE:
|
||||
@ -1560,8 +1560,7 @@ int crunch_seq(t_opseq **seq, int pass)
|
||||
op->code = IDXAB_CODE;
|
||||
freeops = 1;
|
||||
}
|
||||
if ((pass > 0) && (freeops == 0) &&
|
||||
(op->type || !is_hardware_address(op->offsz)))
|
||||
else if ((pass > 0) && (op->type || !is_hardware_address(op->offsz)))
|
||||
crunched = try_dupify(op);
|
||||
break; // LAB_CODE
|
||||
case LAW_CODE:
|
||||
@ -1589,8 +1588,7 @@ int crunch_seq(t_opseq **seq, int pass)
|
||||
op->code = IDXAW_CODE;
|
||||
freeops = 1;
|
||||
}
|
||||
if ((pass > 0) && (freeops == 0) &&
|
||||
(op->type || !is_hardware_address(op->offsz)))
|
||||
else if ((pass > 0) && (op->type || !is_hardware_address(op->offsz)))
|
||||
crunched = try_dupify(op);
|
||||
break; // LAW_CODE
|
||||
case LOGIC_NOT_CODE:
|
||||
|
Loading…
x
Reference in New Issue
Block a user