-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathtune.asm
36 lines (29 loc) · 1.62 KB
/
tune.asm
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
;*************************************************************************************
;*************************************************************************************
;** **
;** Tinyplayer - LibV2 example **
;** written by Tammo 'kb' Hinrichs 2000-2008 **
;** This file is in the public domain **
;** "Patient Zero" is (C) Melwyn+LB 2005, do not redistribute **
;** **
;** Compile with NASM 0.97 or YASM **
;** **
;*************************************************************************************
;*************************************************************************************
bits 32
section .data
global _theTune
_theTune:
incbin "snd\cubes.v2m"
;*************************************************************************************
;** **
;** Some replacements for things VC2005 needs when compiling without CRT **
;** **
;*************************************************************************************
%ifdef NDEBUG
global __fltused
__fltused dd 0
section .text
global __chkstk
__chkstk ret
%endif