From 322d63aea3002edbee1e5c99e892654d5c3920b8 Mon Sep 17 00:00:00 2001 From: neauoire Date: Tue, 31 Oct 2023 20:12:33 -0700 Subject: [PATCH] Added notes --- cli/opctest/opctest.tal | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/cli/opctest/opctest.tal b/cli/opctest/opctest.tal index f150ca6..51ad02d 100644 --- a/cli/opctest/opctest.tal +++ b/cli/opctest/opctest.tal @@ -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 )