summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-04-27 13:46:59 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-04-27 13:46:59 +0200
commit55fe269eaa3bd3f63b8672119aa1e96ae30f26db (patch)
tree21255fd990a2001e9bf7a91e7144f76947bd14e8
parenta7fb48922dee006339747d128d83fafbe9dfe79a (diff)
downloadabaos-55fe269eaa3bd3f63b8672119aa1e96ae30f26db.tar.gz
abaos-55fe269eaa3bd3f63b8672119aa1e96ae30f26db.tar.bz2
moved and added docu on picoc and xv6
-rw-r--r--doc/README.Wyoos (renamed from README.Wyoos)5
-rw-r--r--doc/README.xv69
2 files changed, 14 insertions, 0 deletions
diff --git a/README.Wyoos b/doc/README.Wyoos
index 7bf4909..fa96fc8 100644
--- a/README.Wyoos
+++ b/doc/README.Wyoos
@@ -21,3 +21,8 @@ keyboard:
their own bandwith.
SlowPort8, slowing down assembly code
+interrupts:
+- assember stubs translating calling conventions to static C++ function
+ handling the interrupt number NO
+
+
diff --git a/doc/README.xv6 b/doc/README.xv6
new file mode 100644
index 0000000..c5b9395
--- /dev/null
+++ b/doc/README.xv6
@@ -0,0 +1,9 @@
+xv6 is nice, but requires gcc
+
+picoc: github.com/Prashant47/picoc
+guy had the same idea of a self-hosting and self-compiling
+cc in xv6.
+
+No perl, no make, and no funny business in the C compiler.
+One issue will be the linker. Either go back to binary or
+a.out format or using ELF (juck).