cscg22-gearboy

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

memset_small.s (217B)


      1        .include        "global.s"
      2
      3        .title  "memset small"
      4        .module MemSetSmall
      5
      6        .area   _HOME
      7
      8.memset_small::
      91$:
     10        ld (hl), a
     11        inc hl
     12        dec c
     13        jp nz, 1$
     14        ret