mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 00:11:00 +00:00
20 lines
260 B
LLVM
20 lines
260 B
LLVM
|
|
||
|
%X = global int 7
|
||
|
%msg = internal global [13 x sbyte] c"Hello World\0A\00"
|
||
|
|
||
|
|
||
|
implementation
|
||
|
|
||
|
declare void %printf([13 x sbyte]*)
|
||
|
|
||
|
void %bar() {
|
||
|
call void %printf([13 x sbyte]* %msg)
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
int %main() {
|
||
|
call void %bar()
|
||
|
ret int 0
|
||
|
}
|
||
|
|