zx_cartridge/Content/ram_part.asm
MichailKaa 7aaf4a7b21 ext version
batty start, but not work
2026-02-19 23:33:01 +03:00

21 lines
430 B
NASM
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

; 19 Feb 2026
; Михаил Каа
DEVICE ZXSPECTRUM48
ORG 0x6700
start:
ld bc, 0xbf7f
ld a, 0b10000000
out (c), a
jp 0x6800
end:
; Выводим размер бинарника.
display "ram_part code size: ", /d, end - start
display "ram_part code start: ", /d, start
display "ram_part code end: ", /d, end
SAVEBIN "./build/ram_part_6700.bin", start, end - start