mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-12 18:33:22 +00:00
17 lines
420 B
LLVM
17 lines
420 B
LLVM
|
%.str_1 = internal constant [4 x sbyte] c"%d\0A\00"
|
||
|
|
||
|
declare int %printf(sbyte*, ...)
|
||
|
|
||
|
int %main() {
|
||
|
%f = getelementptr [4 x sbyte]* %.str_1, long 0, long 0
|
||
|
%d = add int 1, 0
|
||
|
call int (sbyte*, ...)* %printf(sbyte* %f, int %d)
|
||
|
%e = add int 38, 2
|
||
|
call int (sbyte*, ...)* %printf(sbyte* %f, int %e)
|
||
|
%g = add int %d, %d
|
||
|
%h = add int %e, %g
|
||
|
call int (sbyte*, ...)* %printf(sbyte* %f, int %h)
|
||
|
ret int 0
|
||
|
}
|
||
|
|