Added gitignore

This commit is contained in:
Tristan B. Velloza Kildaire 2022-10-15 16:53:39 +02:00
parent f4311b8e67
commit 2d9cf1f333
2 changed files with 11 additions and 11 deletions

4
.gitignore vendored
View File

@ -17,3 +17,7 @@ dub.selections.json
test
.gitignore
tets
l
lerr
tlang.sync-conflict-20220729-104645-JYUKVO3
test.d

18
test.d
View File

@ -1,4 +1,4 @@
module simple;
module simple_class_ref;
void main()
{
@ -7,20 +7,16 @@ void main()
mov R15, RSP;
}
asm
{
sub RSP, 4;
}
asm
{
mov R14B, 65;
mov RSP, R15;
}
asm
{
mov R13B, 65;
}
int h = -1;
h = *((&h)-4);
import std.stdio;
writeln(h);
}