home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Computing 57
/
ac057a.adf
/
Demos
/
hbasm.i
< prev
next >
Wrap
Text File
|
1989-06-29
|
766b
|
44 lines
IFND HISOFTBASIC_LIB_I
HISOFTBASIC_LIB_I set 1
**
** Library interface offsets for HiSoft BASIC library
**
** (C) Copyright 1989 HiSoft
** All Rights Reserved
**
** (this file assumes a standard syntax assembler. If your
** assembler can't cope with conditional macro definitions
** you may have to modify this file)
** for use with linked libraries, set the symbol HBLIB before
** including this file
IFD HBLIB
* these constants are guaranteed for Version 2 of the library
_LVOget_array equ -$24
_LVOget_string equ -$2a
_LVOmake_string equ -$30
_LVOsafe_malloc equ -$60
_LVOsafe_free equ -$66
CALLBAS macro
jsr _LVO\1(a3)
endm
ENDC
* non-shared code uses these
IFND HBLIB
CALLBAS macro
xref \1
jsr \1
endm
ENDC
ENDC ; HISOFTBASIC_LIB.I