This skeleton uses GEMUSingle, clang and [Yamakaky's assembler] (https://github.com/Yamakaky/dcpu) (which is also a dissambler, a debugger and a GEMU compatible emulator).
This toolchain has been written with C developpment in mind, but you can use it to compile dasm-only programs as well.
To compile, use make
. To run, use make run
.
- KISS_bootloader/ contains the [KISS bootloader] (https://github.com/FrOSt-Foundation/KISS_bootloader)
- boot/ contains a minimal C bootstrap code (boot.dasm)
- program/ contains a minimal C code program.
- types.h contains all of dcpu specific types (u16, u32, and so on)
- asm.c/asm.h contain an implementation of specific assembly functions not available with C
- bootloader.h contains the implementation of the struct provided by the bootloader
- entrypoint.c is the implementation of the entrypoint in C.
- tools/ contains all of the required tools to compile, link, assemble, run and debug your programs
All of the files in boot/ will be added before the files in program/ in the final binary. You can use labels and constants from one directory to the other in dasm and from boot/ to program/ in C. No need to use .include
in dasm as it is included by default.
make
: to compile the programmake run
: to compile and run the program (uses GEMUSingle)make clean
: to clean the binary foldermake debug
: to compile and run in debug mode the program (uses Yamakaky's debugger & emulator for maximum compatibility)
The Makefile outputs a lot of different files in the bin/ folder. The files finishing in .bin are usable with GEMU. The files finihsing in .bin.noswap are usable with Yamakaky's emulator (except with bootloader.bin which is also usable with Yamakaky's emulator). The files finishing in .sym are the symbol maps usable in the debugger.
- KISS_bootloader/ contains all compilation files related to the KISS bootloader.
- program/ contains all assembly files generated from C.
- program.dasm is the concatenation of all assembly files from boot/ and program/.
- program.bin contains the bootsector with the correct number of sectors to load from the floppy.
- add a way to specify the order of the files in each directory (for dasm files).
Please feel free to contribute to this toolchain!