1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-11-19 16:01:31 +00:00
Files
amiga-stuff/os13/ostest.c
2016-08-25 18:30:43 -07:00

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;
}