summary refs log tree commit diff stats
path: root/README.org
Commit message (Expand)AuthorAgeFilesLines
* Fix formatting in News sectionAndinus2020-11-251-2/+2
* Add update News in README v0.3.1Andinus2020-11-251-0/+5
* Bump version to v0.3.0, add update News to README v0.3.0Andinus2020-11-241-0/+12
* Remove wrong information, add new release informationAndinus2020-11-241-6/+5
* Add News for v0.2.1 updateAndinus2020-11-241-0/+10
* Update instructions in README, add comments in draco.pl, fix bug v0.2.1Andinus2020-11-241-7/+26
* Update install instructions in README v0.2.0Andinus2020-11-231-17/+10
* Release v0.2.0, load comments hidden under "load more comments"Andinus2020-11-231-21/+39
* Add install instruction for dnf & apt based systemsAndinus2020-11-201-0/+7
* Add alt-links to cast file in READMEAndinus2020-11-191-0/+2
* Add links to Demo in READMEAndinus2020-11-191-2/+8
* Update dependency in READMEAndinus2020-11-191-4/+4
* Add notes to README & manual regarding new changesAndinus2020-11-191-2/+21
* Initialize dracoAndinus2020-11-191-0/+26
Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
# First program: same as https://www.muppetlabs.com/~breadbox/software/tiny/teensy.html
# Just return 42.
#
# To run:
#   $ bootstrap/bootstrap translate ex1.subx -o ex1
#   $ bootstrap/bootstrap run ex1
# Expected result:
#   $ echo $?
#   42

== code

Entry:
# exit(42)
bb/copy-to-ebx  0x2a/imm32  # 42 in hex
e8/call  syscall_exit/disp32

# . . vim:nowrap:textwidth=0