1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
rzzzwilson.pymlac/pymlac/dumpmem_test.asm
2016-03-10 17:41:44 +07:00

12 lines
332 B
NASM
Executable File

;-------------------------------
; Just loop in place - CPU speed test.
;-------------------------------
org 0100 ;
start nop ;
jmp end ;
end hlt ;
org 0200 ;
hlt ;
;-------------------------------
end start