An open API service indexing awesome lists of open source software.

https://github.com/thopterek/microcontroller_assembly

Checking what's happening under the hood of Arduino and Raspberry Pi functions
https://github.com/thopterek/microcontroller_assembly

arduino arduino-library embedded embedded-systems rasberry-pi

Last synced: 15 days ago
JSON representation

Checking what's happening under the hood of Arduino and Raspberry Pi functions

Awesome Lists containing this project

README

          

If you

Rewriting embedded libraries with Assembly


The structure for directories goes as follows:

* inc: does are the libraries used for the reference

* src: code written or compiled by me, follows the below rules

* .s and .asm files are my own implemenations of functions in assembly

* .c are reconstructed from inc functions in the original language

Important note for the code inside the inc, it has its own licences I just use it as a reference for lower level deep dive.
Thats also why in gitattributes I am omitting those files as they are not written by me or are just mash up for easier readability.

TBD