Programming language written in assembly for future projects
|
2 days ago | |
---|---|---|
examples | 5 months ago | |
.gitignore | 3 months ago | |
LICENSE | 5 months ago | |
README.org | 3 months ago | |
build | 3 months ago | |
reset.bootstrap.S | 3 weeks ago | |
reset.rt | 3 weeks ago | |
std.rt | 2 days ago |
asm
branch)You can use already prepared script for that:
./build
Otherwise, you can do it without script. Firstly, you need to compile
bootstrapped version, located in bootstrap
folder.
as --32 -o reset.bootstrap.o ld -melf_i386 -o reset.bootstrap reset.bootstrap.o
Using generated binary you can compile *.rt files. To compile one, you can do:
./reset.bootstrap
This will generate output.asm
file for you. Using instructions above you can
compile it, to run your binary. That's it. Have fun!