https://github.com/nicolasbauw/asm-arm-cat
cat command written in ARM assembly (linux)
https://github.com/nicolasbauw/asm-arm-cat
arm assembly linux syscalls
Last synced: 2 months ago
JSON representation
cat command written in ARM assembly (linux)
- Host: GitHub
- URL: https://github.com/nicolasbauw/asm-arm-cat
- Owner: nicolasbauw
- Created: 2024-01-28T20:14:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-04T14:25:44.000Z (over 2 years ago)
- Last Synced: 2025-06-03T22:26:51.795Z (about 1 year ago)
- Topics: arm, assembly, linux, syscalls
- Language: Assembly
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cat command written in ARM assembly (linux)
This is a very basic ```cat``` command written from scratch in 32 bits ARM assembly.
It just opens a file and displays it.
The source shows how to:
- use command line arguments
- make system calls
Makefile will build with debug symbols, so you can have some fun with gdb :-)