Added notes

This commit is contained in:
neauoire 2023-10-31 20:12:33 -07:00
parent 98951c53c9
commit 322d63aea3
1 changed files with 4 additions and 3 deletions

View File

@ -61,7 +61,8 @@
EQU2 ;Dict/opctests test-part
( Part 7
> Stack wrapping )
> Testing that stacks are circular and wrapping
> Storing 12 at -1 and 34 at 0 )
POP #12 #34 ADD #46 EQU STH
POP #1234 ADD #46 EQU STH
@ -79,14 +80,14 @@
AND ;Dict/ram-wrap test-part
( Part 9
> Zero page no-wrapping )
> Testing that zero-page is not wrapping )
#1234 #ff STZ2
#ff LDZ #0100 LDA ADD #46 EQU
;Dict/zp-wrap test-part
( Part 10
> Device page wrapping
> Testing that device page is wrapping
> TODO )
( end )