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

https://github.com/hacker-code-j/armv8-a

Aarch64 Architecture and Programming for Raspberry Pi
https://github.com/hacker-code-j/armv8-a

aarch64 armv8 cortex-a

Last synced: about 2 months ago
JSON representation

Aarch64 Architecture and Programming for Raspberry Pi

Awesome Lists containing this project

README

          

# ARMv8-A
ARM64 Architecture and Programming for Raspberry Pi

## File Structure

```shell
ARMv8-Cortex-A72/

├── bin/ # The final binary (executable) will be placed here

├── obj/ # Compiled object files (.o) will be stored here

├── src/ # Assembly source files
│ ├── main.c # Main C file
│ └── bn_add_asm.s # Additional source files (optional)

├── Makefile # Makefile to automate build process
└── README.md # Optional: Project documentation
```