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

10 lines
254 B
NASM
Executable File

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