-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApplicationSources.txt
44 lines (40 loc) · 1.09 KB
/
ApplicationSources.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
;----------------------------------------------------------
; ApplicationSources.txt - by Danilo Angelo, 2020
;
; List of all specific application C and ASM sources
; These will always be processed by any build actions
;----------------------------------------------------------
;----------------------------------------------------------
; General structure of a MSX BIN application
; Do NOT remove.
MSX\ROM\msxromcrt0.s
;----------------------------------------------------------
; MSX ROM application, in C and ASM formats
; This is where your main function is.
; THIS IS YOUR PROGRAM!
; Choose ONE and ONLY ONE of the lines below,
; and leave the other commented!
;msxromapp.s
;msxromapp.c
src\main.c
;----------------------------------------------------------
; Additional source files
; Add below additional source files for your application
; using relative paths from the project folder
;yourSourceCodeHere.s
;yourSourceCodeHere.c
;CheckPlayfield.h
;Common.h
;fonts.h
;GameLogic.h
;Graphics.h
;Intro.h
;Math.h
;msxbios.h
;Random.h
;Sound.h
;Sprites.h
;TileColors.h
;TilePatterns.h
;Title.h
src\msxbios.c