Last change
on this file since 56 was
56,
checked in by Sam Hocevar, 14 years ago
|
- Add licensing terms to most C / C++ files (Ref #5).
|
File size:
685 bytes
|
Line | |
---|
1 | /* |
---|
2 | * Abuse - dark 2D side-scrolling platform game |
---|
3 | * Copyright (c) 1995 Crack dot Com |
---|
4 | * |
---|
5 | * This software was released into the Public Domain. As with most public |
---|
6 | * domain software, no warranty is made or implied by Crack dot Com or |
---|
7 | * Jonathan Clark. |
---|
8 | */ |
---|
9 | |
---|
10 | #include "macs.hpp" |
---|
11 | |
---|
12 | struct rminfo { |
---|
13 | long edi,esi,ebp,resv,ebx,edx,ecx,eax; |
---|
14 | ushort flags, es,ds,fs,gs,ip,cs,sp,ss; |
---|
15 | } ; |
---|
16 | |
---|
17 | |
---|
18 | extern void RM_intr(int intr, struct rminfo *rm); // do a real-mode interrupt |
---|
19 | extern void *alloc_low_memory(long size); // size in bytes |
---|
20 | extern void free_low_memory(void *ptr); |
---|
21 | extern long low_memory_available(); // returns size of largest allocatable block |
---|
Note: See
TracBrowser
for help on using the repository browser.