cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

clock.s (135B)


      1	.include	"global.s"
      2
      3	.title	"System clock"
      4	.module	Clock
      5
      6        .globl  .sys_time
      7
      8	.area	_HOME
      9
     10_clock::
     11	LD	HL,(.sys_time)
     12	RET