mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +00:00
11 lines
173 B
C++
11 lines
173 B
C++
|
#include <stdio.h>
|
||
|
|
||
|
extern int table[];
|
||
|
|
||
|
int main() {
|
||
|
printf("%d %d %d %d\n", table[0], table[1], table[2], table[3]);
|
||
|
return table[1];
|
||
|
}
|
||
|
|
||
|
int table[] = { 1, 0, 3, 4 };
|