mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-18 13:34:04 +00:00
8 lines
169 B
C
8 lines
169 B
C
|
// clang -target mipsel-linux-gnu -shared -fPIC -lc dynamic-table.c \
|
||
|
// -o dynamic-table.mips
|
||
|
int puts(const char *);
|
||
|
|
||
|
void foo(void) {
|
||
|
puts("Hello, World");
|
||
|
}
|