mirror of https://github.com/nmlgc/ReC98.git
[Translation unit catch-up] [th04] hflip_lut_generate()
Part of P0138, funded by [Anonymous] and Blue Bolt.
This commit is contained in:
parent
04038449c1
commit
aea5a20de9
|
@ -133,7 +133,7 @@ bin\th04\res_huma.com: th04\res_huma.cpp
|
|||
$**
|
||||
| masters.lib
|
||||
|
||||
bin\th04\op.exe: bin\th04\op.obj th04\m_char.cpp bin\th01\vplanset.obj bin\frmdely1.obj bin\th03\pi_put.obj bin\th03\pi_load.obj bin\th04\cdg_put.obj bin\th04\exit.obj bin\th04\initop.obj bin\th04\cdg_p_na.obj bin\th04\input_s.obj bin\th04\snd_se_r.obj bin\th04\snd_se.obj bin\th04\egcrect.obj bin\th04\bgimage.obj bin\th04\bgimager.obj bin\th04\cdg_load.obj th04\frmdely2.c
|
||||
bin\th04\op.exe: bin\th04\op.obj th04\m_char.cpp bin\th01\vplanset.obj bin\frmdely1.obj bin\th03\pi_put.obj bin\th03\pi_load.obj bin\hfliplut.obj bin\th04\cdg_put.obj bin\th04\exit.obj bin\th04\initop.obj bin\th04\cdg_p_na.obj bin\th04\input_s.obj bin\th04\snd_se_r.obj bin\th04\snd_se.obj bin\th04\egcrect.obj bin\th04\bgimage.obj bin\th04\bgimager.obj bin\th04\cdg_load.obj th04\frmdely2.c
|
||||
$(CC) $(CFLAGS) $(LARGE_LFLAGS) -DGAME=4 -DBINARY='O' -3 -Z -d -nbin\th04\ -eOP.EXE @&&|
|
||||
$**
|
||||
|
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
extern _hflip_lut:byte:256
|
||||
|
||||
; Would have been decompilable into a mess.
|
||||
SHARED segment word public 'CODE' use16
|
||||
assume cs:SHARED
|
||||
|
||||
public _hflip_lut_generate
|
||||
_hflip_lut_generate proc far
|
||||
push di
|
||||
|
@ -23,3 +29,6 @@ _hflip_lut_generate proc far
|
|||
pop di
|
||||
ret
|
||||
_hflip_lut_generate endp
|
||||
SHARED ends
|
||||
|
||||
end
|
||||
|
|
|
@ -1,9 +1 @@
|
|||
extern _hflip_lut:byte:256
|
||||
|
||||
; Would have been decompilable into a mess.
|
||||
SHARED segment word public 'CODE' use16
|
||||
assume cs:SHARED
|
||||
include th03/formats/hfliplut.asm
|
||||
SHARED ends
|
||||
|
||||
end
|
||||
|
|
|
@ -2643,7 +2643,6 @@ SHARED_ segment word public 'CODE' use16
|
|||
assume cs:g_SHARED
|
||||
assume es:nothing, ss:nothing, ds:_DATA, fs:nothing, gs:nothing
|
||||
|
||||
include th03/formats/hfliplut.asm
|
||||
include th04/hardware/input_wait.asm
|
||||
include th04/math/vector1_at.asm
|
||||
include th04/math/vector2_at.asm
|
||||
|
|
Loading…
Reference in New Issue