Create gh-pages branch via GitHub

This commit is contained in:
Ariejan de Vroom 2014-08-19 22:20:04 +02:00
parent 5ea131831a
commit eb00e07208
2 changed files with 3 additions and 2 deletions

View File

@ -60,6 +60,7 @@ the Apple II, Atari 2600, Commodore 64 and the Nintendo Entertainment System (NE
<li>6502 Microprocessor, fully tested</li>
<li>16-bit address bus, with attachable memory</li>
<li>RAM Memory</li>
<li>6551 Asynchronous Communications Interface Adapter (ACIA)</li>
</ul><h2>
<a name="whats-not-yet-included" class="anchor" href="#whats-not-yet-included"><span class="octicon octicon-link"></span></a>What's not (yet) included?</h2>
@ -67,7 +68,7 @@ the Apple II, Atari 2600, Commodore 64 and the Nintendo Entertainment System (NE
<li>Proper Golang packaging and documentation</li>
<li>65C02 support</li>
<li>Roms</li>
<li>I/O (VIA 6522, ACIA 6551)</li>
<li>I/O (VIA 6522)</li>
<li>Batteries</li>
</ul><h2>
<a name="getting-started" class="anchor" href="#getting-started"><span class="octicon octicon-link"></span></a>Getting started</h2>

View File

@ -1 +1 @@
{"name":"I6502","tagline":"A 6502/65C02 Emulator in Go","body":"# i6502 - A 6502 Emulator\r\n\r\n[![Build Status](https://travis-ci.org/ariejan/i6502.svg?branch=master)](https://travis-ci.org/ariejan/i6502)\r\n\r\nThis is an emulator of the i6502 hardward project I'm doing.\r\n\r\nIt's written in Golang and comes fully tested.\r\n\r\n[Website](http://ariejan.github.io/i6502/) • [Documentation](http://godoc.org/github.com/ariejan/i6502)\r\n\r\n## Background\r\n\r\nThe MOS 6502 Microprocessor has been around sinc 1975 and is used in many popular systems, like\r\nthe Apple II, Atari 2600, Commodore 64 and the Nintendo Entertainment System (NES).\r\n\r\nIt features an 8-bit accumulator and ALU, two 8-bit index registers and a 16-bit memory bus, allowing the processor to access up to 64kB of memory. \r\n\r\nI/O is mapped to memory, meaning that both RAM, ROM and I/O are addressed over the same 16-bit address bus.\r\n\r\nBecause of it's simple and elegant design and the plethora of information available about this microprocessor, the 6502 is very useful for learning and hobby projects.\r\n\r\nThe 65C02 is a updated version of the 6502. It includes some bug fixes and new instructions. The goal is for i6502 to fully support the 65C02 as well.\r\n\r\n## What's included in the emulator?\r\n\r\n * 6502 Microprocessor, fully tested\r\n * 16-bit address bus, with attachable memory\r\n * RAM Memory\r\n\r\n## What's not (yet) included?\r\n\r\n * Proper Golang packaging and documentation\r\n * 65C02 support\r\n * Roms\r\n * I/O (VIA 6522, ACIA 6551)\r\n * Batteries\r\n \r\n## Getting started\r\n\r\nAlthough this package contains everything you need, there is not single 'emulator' program yet. The CPU, address bus and RAM components are all available to you, but documentation is still lacking.\r\n\r\nFor now, you can checkout the project, and run the tests.\r\n\r\n go get github.com/ariejan/i6502\r\n cd $GOPATH/src/github.com/ariejan/i6502\r\n go get -t\r\n go test\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT, see [LICENSE](https://github.com/ariejan/i6502/blob/master/LICENSE) for full details.\r\n\r\n## Contributors\r\n\r\n * Ariejan de Vroom (ariejan@ariejan.net)\r\n \r\n Special thanks to the awesome folk at [http://forum.6502.org](http://forum.6502.org) for their support and shared knowledge.\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}
{"name":"I6502","tagline":"A 6502/65C02 Emulator in Go","body":"# i6502 - A 6502 Emulator\r\n\r\n[![Build Status](https://travis-ci.org/ariejan/i6502.svg?branch=master)](https://travis-ci.org/ariejan/i6502)\r\n\r\nThis is an emulator of the i6502 hardward project I'm doing.\r\n\r\nIt's written in Golang and comes fully tested.\r\n\r\n[Website](http://ariejan.github.io/i6502/) • [Documentation](http://godoc.org/github.com/ariejan/i6502)\r\n\r\n## Background\r\n\r\nThe MOS 6502 Microprocessor has been around sinc 1975 and is used in many popular systems, like\r\nthe Apple II, Atari 2600, Commodore 64 and the Nintendo Entertainment System (NES).\r\n\r\nIt features an 8-bit accumulator and ALU, two 8-bit index registers and a 16-bit memory bus, allowing the processor to access up to 64kB of memory. \r\n\r\nI/O is mapped to memory, meaning that both RAM, ROM and I/O are addressed over the same 16-bit address bus.\r\n\r\nBecause of it's simple and elegant design and the plethora of information available about this microprocessor, the 6502 is very useful for learning and hobby projects.\r\n\r\nThe 65C02 is a updated version of the 6502. It includes some bug fixes and new instructions. The goal is for i6502 to fully support the 65C02 as well.\r\n\r\n## What's included in the emulator?\r\n\r\n * 6502 Microprocessor, fully tested\r\n * 16-bit address bus, with attachable memory\r\n * RAM Memory\r\n * 6551 Asynchronous Communications Interface Adapter (ACIA)\r\n\r\n## What's not (yet) included?\r\n\r\n * Proper Golang packaging and documentation\r\n * 65C02 support\r\n * Roms\r\n * I/O (VIA 6522)\r\n * Batteries\r\n \r\n## Getting started\r\n\r\nAlthough this package contains everything you need, there is not single 'emulator' program yet. The CPU, address bus and RAM components are all available to you, but documentation is still lacking.\r\n\r\nFor now, you can checkout the project, and run the tests.\r\n\r\n go get github.com/ariejan/i6502\r\n cd $GOPATH/src/github.com/ariejan/i6502\r\n go get -t\r\n go test\r\n\r\n## License\r\n\r\nThis project is licensed under the MIT, see [LICENSE](https://github.com/ariejan/i6502/blob/master/LICENSE) for full details.\r\n\r\n## Contributors\r\n\r\n * Ariejan de Vroom (ariejan@ariejan.net)\r\n \r\n Special thanks to the awesome folk at [http://forum.6502.org](http://forum.6502.org) for their support and shared knowledge.\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}