https://github.com/kasvith/arm-project
ARM project
https://github.com/kasvith/arm-project
Last synced: 8 months ago
JSON representation
ARM project
- Host: GitHub
- URL: https://github.com/kasvith/arm-project
- Owner: kasvith
- License: mit
- Created: 2017-09-01T16:04:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2019-07-07T11:40:48.000Z (almost 7 years ago)
- Last Synced: 2025-02-04T08:44:13.356Z (over 1 year ago)
- Language: Assembly
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Image processing with ARM
This is a simple ARM program which allows manipulation of matrixes.
Input `[rows] [cols] [opcode] {data}`
Opcodes are follow
- Original **0**
- Inversion **1**
- Rotate by 180 **2**
- Flip **3**
# Example
Input
```3 4 1 43 45 123 132 164 234 12 211 32 121 1 200```
Output
```
Inversion
212 210 132 123
91 21 243 44
223 134 254 55
```