aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2024-04-16 15:48:43 +0630
committerAryadev Chavali <aryadev@aryadevchavali.com>2024-04-16 15:49:26 +0630
commit2a1d006a88881d3a1ad2dd20d650e488ef65a147 (patch)
tree32fb5a86314a11c115c5f3774b8369d49987ebd2
parent8f75241bcbe6c0497f2e09c4c6f081839250e22b (diff)
downloadovm-2a1d006a88881d3a1ad2dd20d650e488ef65a147.tar.gz
ovm-2a1d006a88881d3a1ad2dd20d650e488ef65a147.tar.bz2
ovm-2a1d006a88881d3a1ad2dd20d650e488ef65a147.zip
Updated README about change to projectHEADmaster
-rw-r--r--README.org13
1 files changed, 13 insertions, 0 deletions
diff --git a/README.org b/README.org
index d1764d0..68642f7 100644
--- a/README.org
+++ b/README.org
@@ -5,6 +5,19 @@
A stack based virtual machine in C11, with a dynamic register setup
which acts as variable space. Deals primarily in bytes, doesn't make
assertions about typing and is very simple to target.
+
+2024-04-16: Project will now be split into two components
+1) The runtime + base library
+2) The assembler
+
+This will focus each repository on separate issues and make it easier
+to organize. They will both derive from the same repositories
+i.e. I'm not making fresh repositories and just sticking the folders
+in but rather branching this repository into two different versions.
+
+The two versions will be hosted at:
+1) [[https://github.com/aryadev-software/avm]]
+1) [[https://github.com/aryadev-software/aal]]
* How to build
Requires =GNU make= and a compliant C11 compiler. Code base has been
tested against =gcc= and =clang=, but given how the project has been