mirror of https://github.com/nmlgc/ReC98.git
7 lines
251 B
NASM
7 lines
251 B
NASM
|
; Shared buffer for one full row of gaiji characters. Used for temporarily
|
||
|
; storing the two scores, and the enemy health, dream, and power bars.
|
||
|
HUD_TRAM_W = 8
|
||
|
public _hud_gaiji_row
|
||
|
_hud_gaiji_row db (HUD_TRAM_W + 1) dup (0)
|
||
|
db 0 ; (word alignment)
|