mirror of
https://github.com/weiju/amiga-stuff
synced 2025-11-22 18:14:44 +00:00
10 lines
173 B
C
10 lines
173 B
C
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
printf("hello\n");
|
|
printf("exec base is: shit\n");
|
|
printf("hello: %04x\n", *((unsigned int *) 4));
|
|
return 0;
|
|
}
|