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

      1 # GB specific Makefile
      2 
      3 TOPDIR = ../../../..
      4 
      5 THIS = msxdos
      6 PORT = z80
      7 
      8 CSRC = crlf.c 
      9 
     10 ASSRC =	set_interrupts.s \
     11 	outi.s \
     12 	bdos_putchar.s bdos_getchar.s bdos_gets.s \
     13 	msx_refresh_oam.s \
     14 	msx_write_vdp.s \
     15 	msx_set_native_data.s msx_set_1bpp_data.s msx_set_1bpp_sprite_data.s \
     16 	msx_set_tile_map.s msx_set_tile_map_xy.s \
     17 	msx_fill_rect.s msx_fill_rect_xy.s \
     18 	msx_metasprites.s msx_metasprites_hide.s msx_metasprites_hide_spr.s \
     19 	pad.s \
     20 	msx_int.s \
     21 	mode.s clock.s get_r_reg.s \
     22 	delay.s \
     23 	memset_small.s \
     24 	far_ptr.s \
     25 	color.s \
     26 	gb_decompress.s \
     27 	rle_decompress.s \
     28 	zx0_decompress.s \
     29 	heap.s \
     30 	___sdcc_bcall.s ___sdcc_bcall_abc.s ___sdcc_bcall_ehl.s \
     31 	crt0.s
     32 
     33 CRT0 =	crt0.s
     34 
     35 include $(TOPDIR)/Makefile.common
     36 
     37 AS = $(AS_Z80)
     38 
     39 include ../../../Makefile.platform

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