Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lwander/proper-bootstrap
https://github.com/lwander/proper-bootstrap
Last synced: about 9 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/lwander/proper-bootstrap
- Owner: lwander
- License: apache-2.0
- Created: 2016-01-05T01:23:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-22T00:37:08.000Z (almost 9 years ago)
- Last Synced: 2023-02-26T17:17:41.451Z (over 1 year ago)
- Language: Assembly
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Proper Bootstrap
This project is about bootstrapping a x86_64 C compiler starting with only an
assembler.# T0
This will, in some sense, be the trickiest generation of the compiler to write
as it will be my first significant project in pure assembly. Furthermore, since
I want to rely on as little existing tooling as possible, I need to start
writing a standard library of sorts. Basic string manipulation (compare,
size, copy, etc...), dynamic memory allocation, and some syscall wrappers
are a must. To avoid making this too difficult, I will probably version and
iterate on the library itself. To keep library versions separate, I'll prefix
the functions with the compiler version (`t{0, 1, 2}_*`).