2020-06-18 21:24:47 +10:00
|
|
|
lblnext BSET PC ORG @ 0x1b + ! ( next )
|
2020-04-23 11:19:12 +10: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-14 23:48:10 +10:00
|
|
|
( PS ) HL PS_ADDR LDddnn,
|
|
|
|
SP SUBHLss,
|
2020-06-18 21:16:40 +10:00
|
|
|
JRC, lblofl BWR ( abortUnderflow-B298 )
|
2020-06-14 23:48:10 +10:00
|
|
|
( RS ) IX PUSHqq, HL POPqq,
|
2020-04-23 11:19:12 +10:00
|
|
|
DE RS_ADDR LDddnn,
|
|
|
|
DE SUBHLss,
|
2020-06-18 21:16:40 +10:00
|
|
|
JRC, lblofl BWR ( IX < RS_ADDR? abortUnderflow-B298 )
|
2020-04-23 11:19:12 +10:00
|
|
|
E 0 IY+ LDrIXY,
|
|
|
|
D 1 IY+ LDrIXY,
|
2020-06-14 23:48:10 +10:00
|
|
|
IY INCss, IY INCss,
|
2020-04-23 11:19:12 +10:00
|
|
|
( continue to execute )
|