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
- Host: GitHub
- URL: https://github.com/thopterek/microcontroller_assembly
- Owner: Thopterek
- Created: 2025-07-10T13:38:03.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-31T14:27:05.000Z (11 months ago)
- Last Synced: 2025-08-10T16:49:15.975Z (11 months ago)
- Topics: arduino, arduino-library, embedded, embedded-systems, rasberry-pi
- Language: Assembly
- Homepage:
- Size: 51.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
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