diff options
author | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-04 15:12:17 +1100 |
---|---|---|
committer | alekseiplusplus <alekseijeaves@protonmail.com> | 2023-12-04 15:12:17 +1100 |
commit | 5bb10fc4121a8c8434dcd367f2e611599a11e12e (patch) | |
tree | 8fcac1461a50fca6bec6ccd2246f7515ad26099a /test/02-Stack | |
parent | 78d3f650b2ca507e3d5376d3cad4d93df1901569 (diff) |
removed stuff; various instruction improvements
Diffstat (limited to 'test/02-Stack')
-rw-r--r-- | test/02-Stack | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/test/02-Stack b/test/02-Stack deleted file mode 100644 index 50c760c..0000000 --- a/test/02-Stack +++ /dev/null @@ -1,59 +0,0 @@ -# 02-Stack -#This test checks whether each stack operation functions as expected. - -#MNEMONIC HEX -#TXS (Transfer X to Stack ptr) $9A -#TSX (Transfer Stack ptr to X) $BA -#PHA (PusH Accumulator) $48 -#PLA (PuLl Accumulator) $68 -#PHP (PusH Processor status) $08 -#PLP (PuLl Processor status) $28 - -p - -/Push/Pull Accumulator Test - -a9 01 - -48 - -a9 10 - -48 - -68 - -68 - -p - -m01 - -/~~~~TXS/TSX Test - -a27f - -/Status after LDX 7f -p - -9a - -/Status after TXS -p - -68 - -68 - -/Status after 2 PLA -p - -ba - -/Status after TSX -p - -q - - - |