mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
make it actually compile again :)
This commit is contained in:
parent
f0e4053a0d
commit
8197e3c7cd
@ -3,34 +3,25 @@
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
|
||||
|
||||
/* From _heap.h */
|
||||
extern unsigned _horg; /* Bottom of heap */
|
||||
extern unsigned _hptr; /* Current top */
|
||||
extern unsigned _hend; /* Upper limit */
|
||||
extern unsigned _hfirst; /* First free block in list */
|
||||
extern unsigned _hlast; /* Last free block in list */
|
||||
|
||||
#include <_heap.h>
|
||||
|
||||
static unsigned char* V[256];
|
||||
|
||||
|
||||
|
||||
static void ShowInfo (void)
|
||||
/* Show heap info */
|
||||
{
|
||||
/* Count free blocks */
|
||||
unsigned Count = 0;
|
||||
unsigned** P = (unsigned**) _hfirst;
|
||||
unsigned** P = (unsigned**) _heapfirst;
|
||||
while (P) {
|
||||
++Count;
|
||||
P = P[1];
|
||||
}
|
||||
printf ("%04X %04X %04X %04X %04X %u\n",
|
||||
_horg, _hptr, _hend, _hfirst, _hlast, Count);
|
||||
_heaporg, _heapptr, _heapend, _heapfirst, _heaplast, Count);
|
||||
|
||||
if (Count) {
|
||||
P = (unsigned**) _hfirst;
|
||||
P = (unsigned**) _heapfirst;
|
||||
while (P) {
|
||||
printf ("%04X %04X %04X %04X(%u)\n",
|
||||
(unsigned) P, P[2], P[1], P[0], P[0]);
|
||||
|
Loading…
Reference in New Issue
Block a user