aboutsummaryrefslogtreecommitdiff
path: root/tests/3.qbt
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-04-30 15:25:17 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-04-30 15:25:17 +0300
commitfd5bdaff40f93546009e1ec854fd26df01e78f22 (patch)
tree2750eff7430b62d790292df238595a22e3f02616 /tests/3.qbt
parentcb71bb6ad44d5e6ea4d4af4896c23088957cbdb3 (diff)
downloadqbt-fd5bdaff40f93546009e1ec854fd26df01e78f22.tar.gz
qbt-fd5bdaff40f93546009e1ec854fd26df01e78f22.zip
correct addr
+ Doesn't quite implement stack handling fully as of yet, but slowly getting there
Diffstat (limited to 'tests/3.qbt')
-rw-r--r--tests/3.qbt13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/3.qbt b/tests/3.qbt
deleted file mode 100644
index 7c54e0f..0000000
--- a/tests/3.qbt
+++ /dev/null
@@ -1,13 +0,0 @@
-main()
-{
- i27 i = 0;
- i27 max = 1000000000;
- i27 sum = 0;
-
-top:
- i27 sum = sum + i;
- i27 i = i + 1;
- i < max -> top;
- &_putchar(i9 sum) => ();
- => ();
-}