An educational compiler for a subset of Oberon version 1.0
- Intel x86
- Intel x86-64
- MIPS
oberonc.exe is the compiler executable. It generates an assembly file compiled from the source code.
After oberonc has generated the assembly file, you execute the GNU Assembler (GAS, as) to generate the object file and then execute the GNU Linker ( ld ) to create the executable file of your program.
Files: bin/oberonc.exe bin/gas/as.exe bin/gas/ld.exe
The batches intend to simplify these steps.
Once you've created the assembly file, you can just execute the assemble.cmd and type the name of the assembly file, without the extension (.s) .
The build.cmd do all the steps. It means that you can just execute the build.cmd and type the name of the source file, without the extension (.obe), and it will call the compiler, the assembler and the linker.
oberonc is the compiler executable. It generates an assembly file compiled from the source code.
After oberonc has generated the assembly file, you can execute the GNU C Compiler (gcc) to generate the executable file of your program.
The build.sh do all the steps. It means that you can just execute the bash.sh passing the path of your source file as an argument, then it will call the Oberon-0 compiler and the GNU C Compiler (gcc) generating the executable in the same folder of you source file.
The MIPS code generation has been tested using the spim
(MIPS simulator). In order to compile for MIPS architecture, make use of the -mips
option, e.g. oberonc file.OBE -mips
, then the compiler will generate a file.s
output file with the assembly code for the MIPS architecture. Afterwards, you can run the spim
simulator with the assembly file.
Finish support to x64 architecture.
Code optimisation.