jserv / full-stack-hello

minimal instruction set and assembler/compiler for "Hello World" execution
Other
114 stars 49 forks source link

Seperate front-end and back-end to generate compiled bytecode? #14

Open mlouielu opened 7 years ago

mlouielu commented 7 years ago

Maybe somehow we can generate bytecode, and run from bytecode? without assemble_from_file.

jserv commented 7 years ago

At present, as.c is actually a parser and evaluator rather than a functioned assembler. We would better generate real bytecode / machine code accordingly.

pakls commented 7 years ago

And load/store the bytecode from/to ELF formatted files?