Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
Last synced: about 2 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 (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-08T03:40:07.000Z (2 months ago)
- Last Synced: 2024-11-08T04:27:22.407Z (2 months ago)
- Language: Assembly
- Size: 323 KB
- 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
project/
│
├── bin/ # The final binary (executable) will be placed here
│
├── obj/ # Compiled object files (.o) will be stored here
│
├── src/ # Assembly source files
│ ├── main.s # Main assembly file
│ └── utils.s # Additional source files (optional)
│
├── Makefile # Makefile to automate build process
└── README.md # Optional: Project documentation
```