Files
z80/C264k/Part2/P2.1-JP0.z80
2022-09-11 01:13:35 -04:00

9 lines
360 B
Z80 Assembly

;Pt2.1-JP0.z80
org 0 ;Compile code to run at address $0000
loop: ;Label - an address referenced elsewhere in the code
jp loop ;Actual Z80 code - jump to 'loop'
; https://bread80.com/2020/08/13/couch-to-64k-part-2-adding-rom-to-our-breadboard-z80-computer/
; starts at address 0, advances to address 1, loops back to address 0