Move assembly into the arch directory

This commit is contained in:
2025-07-18 22:40:30 +02:00
parent d77b7b8735
commit a5ef7a0906
4 changed files with 35 additions and 3 deletions

21
README.md Normal file
View File

@@ -0,0 +1,21 @@
Experimenting with operating system development.
- Programming language: [Elna](https://git.caraus.tech/belka/elna).
- Architecture: RISC-V 32-bit.
- Target machine: Qemu.
This repository contains some rake (ruby's task runner) tasks to build
a cross compiler and the code. Assuming that all dependencies needed to build
GCC are installed in the system the build is tested on Linux an MacOS.
To build the cross compiler do:
```sh
rake cross
```
To build and run the rest in qemu:
```sh
rake
```