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/mos6502/Makefile

      1 # sm83 specific Makefile
      2 
      3 TOPDIR = ../../..
      4 
      5 THIS = mos6502
      6 
      7 ASSRC = __sdcc_indirect_jsr.s _memcpy.s _strcpy.s _strcmp.s _memset.s \
      8 	rand.s \
      9 	_divuint.s _divsint.s _modsint.s _moduint.s _moduchar.s \
     10 	_divulong.s _divslong.s _modulong.s _modslong.s \
     11 	_divuchar.s \
     12 	_mulint.s \
     13 	_mullong.s \
     14 	_muluchar.s _mulschar.s \
     15 	bcd.s \
     16 	_setjmp.s \
     17 	_temp.s
     18 
     19 CSRC =	_memmove.c _memset.c abs.c \
     20 	_rrulonglong.c _rrslonglong.c \
     21 	atomic_flag_test_and_set.c \
     22 	__itoa.c _strlen.c
     23 
     24 include $(TOPDIR)/Makefile.common
     25 
     26 AS = $(AS_6500)
     27 
     28 include ../Makefile.port
     29 
     30 

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