c64-livecoding/wip-hugo/source.s
hugova 7f56f90613 Changed 16-bit value syntax from using > and < in addresses to using +1.
This was recomended by dicander and duunqnd because  A =$ABAC
looks like one address and not 2 zero-page addresses.
2025-04-28 12:56:52 +02:00

16 lines
480 B
ArmAsm
Executable file

;;; -*- Mode: asm; indent-tabs-mode: t; tab-width: 8 -*-
.debuginfo + ; Generate debug info
;;Macros
.include "macros/16aritmatic.s"
;;inc files
.include "routines/memory/mem.inc"
;;Code to run
.include "STARTUP.s"
.include "routines/line/line_test.s"
;.include "routines/memory/memcpy_test.s"
exit:
jmp exit
.include "routines/line/line.s"
.include "routines/memory/pixel_draw.s"
.include "routines/memory/memset.s"
.include "routines/memory/memcpy.s"