mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-19 16:01:31 +00:00
9 lines
143 B
C
9 lines
143 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf("hello\n");
|
|
printf("Exec Base: %04x\n", *((unsigned int *) 4));
|
|
return 0;
|
|
}
|