]> git.sur5r.net Git - cc65/blob - testcode/lib/atari/mem.c
Heap test program
[cc65] / testcode / lib / atari / mem.c
1 /*
2  * test program to display avail. mem.
3  *
4  */
5
6 #include <stdio.h>
7
8 unsigned int *APPMHI = (unsigned int *)0xe;
9 unsigned int *MEMTOP = (unsigned int *)0x2e5;
10
11 unsigned char _graphmode_used = 0;
12
13 int main(void)
14 {
15     printf("APPMHI = %04X, MEMTOP = %04X\n",*APPMHI,*MEMTOP);
16     printf("press return!\n");
17     getchar();
18     return(0);
19 }