holy shit thats a lot of changed to asmrigs
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
main()
|
||||
_tick()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
3
asmrigs/tests/001.s
Normal file
3
asmrigs/tests/001.s
Normal file
@@ -0,0 +1,3 @@
|
||||
public _tick
|
||||
_tick:
|
||||
ret
|
||||
@@ -1,4 +1,5 @@
|
||||
main()
|
||||
_tick()
|
||||
{
|
||||
return 0;
|
||||
extrn a;
|
||||
a = 30;
|
||||
}
|
||||
|
||||
3
asmrigs/tests/002.s
Normal file
3
asmrigs/tests/002.s
Normal file
@@ -0,0 +1,3 @@
|
||||
public _tick
|
||||
_tick:
|
||||
ret
|
||||
@@ -1,4 +1,5 @@
|
||||
main()
|
||||
_tick()
|
||||
{
|
||||
return 1 + 2 * 3;
|
||||
extrn a;
|
||||
a = 1 + 2 * 3 * ( 4 + 5 );
|
||||
}
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
main()
|
||||
{
|
||||
extrn something;
|
||||
auto a, b;
|
||||
a = 10;
|
||||
b = a + 5;
|
||||
|
||||
Reference in New Issue
Block a user