1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00

Test files for 'dumpmem' DSL opcode

This commit is contained in:
Ross Wilson
2016-02-24 11:15:40 +07:00
parent 74fa03e2f1
commit f17c26b503
2 changed files with 9 additions and 0 deletions

2
pymlac/dumpmem.test Normal file
View File

@@ -0,0 +1,2 @@
# test of loading simple code and dumping memory
bootrom ptr; mount ptr dumpmem_test.ptp; setreg pc 040; rununtil 0; dumpmem dumpmem_test.dump

7
pymlac/dumpmem_test.asm Executable file
View File

@@ -0,0 +1,7 @@
;-------------------------------
; Just loop in place - CPU speed test.
;-------------------------------
org 0100 ;
start jmp start ;
;-------------------------------
end