mirror of https://github.com/nmlgc/ReC98.git
[Maintenance] [th01] Move FUUIN.EXE's master.lib data to a new assembly unit
Part of P0213, funded by Ember2528 and GhostRiderCog.
This commit is contained in:
parent
bfb15c7afe
commit
04f5c27d13
|
@ -53,7 +53,7 @@ bin\th01\reiiden.exe: bin\piloadc.obj bin\th01\reiiden.obj th01\main_010.cpp th0
|
|||
$**
|
||||
|
|
||||
|
||||
bin\th01\fuuin.exe: bin\piloadc.obj bin\th01\fuuin.obj th01\fuuin_01.cpp th01\fuuin_02.cpp th01\fuuin_03.cpp th01\fuuin_04.cpp bin\th01\vsync.obj bin\th01\ztext.obj bin\th01\initexit.obj bin\th01\graph.obj bin\th01\grppffx.obj th01\fuuin_10.cpp bin\th01\vplanset.obj th01\fuuin_11.cpp th01\2x_fuuin.cpp bin\th01\mdrv2.obj bin\th01\fuuin_2.obj
|
||||
bin\th01\fuuin.exe: bin\piloadc.obj bin\th01\fuuin.obj th01\fuuin_01.cpp th01\fuuin_02.cpp th01\fuuin_03.cpp th01\fuuin_04.cpp bin\th01\fuuin_2.obj bin\th01\vsync.obj bin\th01\ztext.obj bin\th01\initexit.obj bin\th01\graph.obj bin\th01\grppffx.obj th01\fuuin_10.cpp bin\th01\vplanset.obj th01\fuuin_11.cpp th01\2x_fuuin.cpp bin\th01\mdrv2.obj bin\th01\fuuinm.obj
|
||||
$(CC) $(CFLAGS) $(LARGE_LFLAGS) -3 -Z -DGAME=1 -DBINARY='E' -nbin\th01\ -eFUUIN.EXE @&&|
|
||||
$**
|
||||
|
|
||||
|
|
1
Tupfile
1
Tupfile
|
@ -68,6 +68,7 @@ BMP2ARR = bin\\Pipeline\\bmp2arr.exe
|
|||
|> !as |> bin\\th01\\reiiden.obj
|
||||
: th01_fuuin.asm |> !as |> bin\\th01\\fuuin.obj
|
||||
: th01_fuuin_data.asm |> !as |> bin\\th01\\fuuin_2.obj
|
||||
: th01_fuuin_master.asm |> !as |> bin\\th01\\fuuinm.obj
|
||||
|
||||
: th02_zuninit.asm |> !as |> bin\\th02\\zuninit.obj
|
||||
: th02_op.asm |> !as |> bin\\th02\\op.obj
|
||||
|
|
|
@ -28,6 +28,7 @@ tasm32 /m /mx /kh32768 /t th01_op.asm bin\th01\op.obj
|
|||
tasm32 /m /mx /kh32768 /t th01_reiiden.asm bin\th01\reiiden.obj
|
||||
tasm32 /m /mx /kh32768 /t th01_fuuin.asm bin\th01\fuuin.obj
|
||||
tasm32 /m /mx /kh32768 /t th01_fuuin_data.asm bin\th01\fuuin_2.obj
|
||||
tasm32 /m /mx /kh32768 /t th01_fuuin_master.asm bin\th01\fuuinm.obj
|
||||
tasm32 /m /mx /kh32768 /t th02_zuninit.asm bin\th02\zuninit.obj
|
||||
tasm32 /m /mx /kh32768 /t th02_op.asm bin\th02\op.obj
|
||||
tasm32 /m /mx /kh32768 /t th02_main.asm bin\th02\main.obj
|
||||
|
|
|
@ -17,20 +17,5 @@ include th01/hardware/graph_r[data].asm
|
|||
include th01/hardware/respal[data].asm
|
||||
include th01/formats/grp_ptn[data].asm
|
||||
include th01/snd/mdrv2[data].asm
|
||||
include libs/master.lib/version[data].asm
|
||||
include libs/master.lib/grp[data].asm
|
||||
include libs/master.lib/pal[data].asm
|
||||
include libs/master.lib/respal_exist[data].asm
|
||||
include libs/master.lib/resdata[data].asm
|
||||
include libs/master.lib/fil[data].asm
|
||||
include libs/master.lib/dos_ropen[data].asm
|
||||
include libs/master.lib/clip[data].asm
|
||||
include libs/master.lib/rand[data].asm
|
||||
|
||||
.data?
|
||||
|
||||
include libs/master.lib/pal[bss].asm
|
||||
include libs/master.lib/fil[bss].asm
|
||||
include libs/master.lib/clip[bss].asm
|
||||
|
||||
end
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
; master.lib data for TH01's FUUIN.EXE.
|
||||
|
||||
.386
|
||||
.model use16 large
|
||||
|
||||
.data
|
||||
|
||||
include libs/master.lib/version[data].asm
|
||||
include libs/master.lib/grp[data].asm
|
||||
include libs/master.lib/pal[data].asm
|
||||
include libs/master.lib/respal_exist[data].asm
|
||||
include libs/master.lib/resdata[data].asm
|
||||
include libs/master.lib/fil[data].asm
|
||||
include libs/master.lib/dos_ropen[data].asm
|
||||
include libs/master.lib/clip[data].asm
|
||||
include libs/master.lib/rand[data].asm
|
||||
|
||||
.data?
|
||||
|
||||
include libs/master.lib/pal[bss].asm
|
||||
include libs/master.lib/fil[bss].asm
|
||||
include libs/master.lib/clip[bss].asm
|
||||
|
||||
end
|
Loading…
Reference in New Issue