Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/covx/lc3
Lc3 Little Computer Emulator
https://github.com/covx/lc3
assembly lc3 lc3-vm virtual-machine
Last synced: about 1 month ago
JSON representation
Lc3 Little Computer Emulator
- Host: GitHub
- URL: https://github.com/covx/lc3
- Owner: covx
- License: gpl-3.0
- Created: 2020-04-28T10:47:16.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T10:31:47.000Z (over 4 years ago)
- Last Synced: 2024-09-30T06:05:58.434Z (about 2 months ago)
- Topics: assembly, lc3, lc3-vm, virtual-machine
- Language: Go
- Homepage:
- Size: 240 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LC3
LC-3 (Little Computer 3) emulator implemented in Go.
See more:
- https://en.wikipedia.org/wiki/Little_Computer_3
- https://justinmeiners.github.io/lc3-vm/supplies/lc3-isa.pdf
- https://www.cs.utexas.edu/users/fussell/courses/cs310h/lectures/Lecture_10-310h.pdf## Examples:
### 2048 Game:
```
lc3 -image ./examples/2048.obj
```or
```bash
go run main.go -image ./examples/2048.obj
```Result:
![2048](./images/2048.png "2048 game")
### Rogue game:
```
lc3 -image ./programs/rogue.obj
```or
```bash
go run main.go -image ./programs/rogue.obj
```Result:
![Rogue](./images/rogue.png "Rogue game")