https://github.com/hacker-code-j/armv8-cortex-a72
ARM64 Architecture and Programming for Raspberry Pi 4B
https://github.com/hacker-code-j/armv8-cortex-a72
aarch64 armv8 cortex-a
Last synced: 3 months ago
JSON representation
ARM64 Architecture and Programming for Raspberry Pi 4B
- Host: GitHub
- URL: https://github.com/hacker-code-j/armv8-cortex-a72
- Owner: Hacker-Code-J
- License: mit
- Created: 2024-10-03T06:22:53.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-12-20T14:11:22.000Z (5 months ago)
- Last Synced: 2025-01-11T23:46:47.410Z (4 months ago)
- Topics: aarch64, armv8, cortex-a
- Language: TeX
- Homepage:
- Size: 3.14 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ARMv8-Cortex-A72
ARM64 Architecture and Programming for Raspberry Pi 4B## 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
```