add turingcomplete cpu compiler

This commit is contained in:
Jose Luis Montañes Ojados
2026-03-03 01:18:47 +01:00
parent d8b4f9b2ea
commit 9610957f1b
13 changed files with 1284 additions and 6 deletions

12
projects/mycpu/ifs.j Normal file
View File

@@ -0,0 +1,12 @@
counter = 0
fn inc():
counter = counter + 1
fn main():
if counter < 30:
inc()
main()
main()