2020-06-18 07:24:47 -04:00
|
|
|
lblnext BSET PC ORG @ 0x1b + ! ( next )
|
2020-04-22 21:19:12 -04:00
|
|
|
( This routine is jumped to at the end of every word. In it,
|
|
|
|
we jump to current IP, but we also take care of increasing
|
|
|
|
it by 2 before jumping. )
|
|
|
|
( Before we continue: are stacks within bounds? )
|
2020-06-27 22:01:56 -04:00
|
|
|
( PS ) HL PS_ADDR LDdn,
|
|
|
|
SP SUBHLd,
|
2020-06-18 07:16:40 -04:00
|
|
|
JRC, lblofl BWR ( abortUnderflow-B298 )
|
2020-06-27 22:01:56 -04:00
|
|
|
( RS ) IX PUSH, HL POP,
|
|
|
|
DE RS_ADDR LDdn,
|
|
|
|
DE SUBHLd,
|
2020-06-18 07:16:40 -04:00
|
|
|
JRC, lblofl BWR ( IX < RS_ADDR? abortUnderflow-B298 )
|
2020-04-22 21:19:12 -04:00
|
|
|
E 0 IY+ LDrIXY,
|
|
|
|
D 1 IY+ LDrIXY,
|
2020-06-27 22:01:56 -04:00
|
|
|
IY INCd, IY INCd,
|
2020-04-22 21:19:12 -04:00
|
|
|
( continue to execute )
|