1
0
mirror of https://github.com/weiju/amiga-stuff synced 2025-12-08 14:58:33 +00:00

initial version

This commit is contained in:
Wei-ju Wu
2013-02-26 22:23:48 -08:00
commit adc0ad456a
25 changed files with 1881 additions and 0 deletions

9
os13/ostest.c Normal file
View File

@ -0,0 +1,9 @@
#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;
}