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/asm/z80/Makefile

      1 # z80 specific Makefile
      2 
      3 TOPDIR = ../../..
      4 
      5 THIS = z80
      6 
      7 ASSRC = __strreverse.s strcpy.s strlen.s \
      8 	divmixed.s divsigned.s divunsigned.s \
      9 	modsigned.s modunsigned.s modmixed.s \
     10 	mul.s mulchar.s \
     11 	__itoa.s __ltoa.s \
     12 	__uitobcd.s __ultobcd.s \
     13 	memcpy.s memmove.s memset.s memcmp.s \
     14 	setjmp.s \
     15 	abs.s \
     16 	rand.s arand.s \
     17 	__sdcc_call_hl.s __sdcc_call_iy.s \
     18 	atomic_flag_test_and_set.s __sdcc_critical.s \
     19 	crtenter.s \
     20 	bcd.s \
     21 	reverse.s
     22 
     23 include $(TOPDIR)/Makefile.common
     24 
     25 AS = $(AS_Z80)
     26 
     27 include ../Makefile.port
     28 
     29 

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