git.y1.nz

gbdk-2020

GameBoy Development Kit
download: https://git.y1.nz/archives/gbdk.tar.gz
README | Files | Log | Refs | LICENSE

gbdk-lib/libc/targets/z80/memset_small.s

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

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.