summaryrefslogtreecommitdiff
path: root/miniany/README
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2021-09-26 20:31:51 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2021-09-26 20:31:51 +0200
commit90689d22cccce853ab6cb7dd078baaa501afb777 (patch)
treee1a1f3b6e106fbbd52888c889b09a519d86545c6 /miniany/README
parentd0491186abedd36a6e065e97bf29eaaf87f6f95c (diff)
downloadcompilertests-90689d22cccce853ab6cb7dd078baaa501afb777.tar.gz
compilertests-90689d22cccce853ab6cb7dd078baaa501afb777.tar.bz2
cc:
- fixed zeroing of EDX before division if operating register was EAX - implemented simple itoa in assembly in putint operation
Diffstat (limited to 'miniany/README')
-rw-r--r--miniany/README4
1 files changed, 4 insertions, 0 deletions
diff --git a/miniany/README b/miniany/README
index 033f3d4..6367011 100644
--- a/miniany/README
+++ b/miniany/README
@@ -73,6 +73,10 @@ complex things into our own compiler.
* https://github.com/lotabout/write-a-C-interpreter/blob/master/tutorial/en/: tutorial
based on C4 how to build a C interpreter, explains nicely details in C4.
+* https://github.com/felipensp/assembly/blob/master/x86/itoa.s,
+ https://baptiste-wicht.com/posts/2011/11/print-strings-integers-intel-assembly.html,
+ putint for early debugging
+
* documentation
* "Compiler Construction", Niklaus Wirth
* https://github.com/DoctorWkt/acwj: a nice series on building a C compiler,