Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neophob/govectrex
https://github.com/neophob/govectrex
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/neophob/govectrex
- Owner: neophob
- Created: 2021-01-14T14:29:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-18T09:30:53.000Z (almost 4 years ago)
- Last Synced: 2024-10-16T08:22:08.342Z (3 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# General Consumer Electronics Vectrex
## Hardware
- CPU: Motorola 6809 @ 1.5 MHz
- RAM: 1kB
- ROM: 8k
- Cartridge ROM: 32 KB
- Sound: General Instrument AY-3-8912 aka YM2149 (https://en.wikipedia.org/wiki/General_Instrument_AY-3-8910)
- I/O Port: VIA 6522 (https://en.wikipedia.org/wiki/MOS_Technology_6522)## Misc
- A total of 28 games were released for the Vectrex
- https://en.wikipedia.org/wiki/Vectrex
- https://github.com/jhawthorn/vecx## GO
- Value receiver makes a copy of the type and pass it to the function. The function stack now holds an equal object but at a different location on memory. That means any changes done on the passed object will remain local to the method. *The original object will remain unchanged.*
- Pointer receiver passes the address of a type to the function. The function stack has a reference to the original object. So any modifications on the passed object will *modify the original object.*