Fix links

This commit is contained in:
Ariejan de Vroom 2014-08-29 14:16:43 +02:00
parent a8b379458f
commit 0ad97ed9e7

View File

@ -13,7 +13,7 @@ summary: |
under test in a function and test that. Sometimes, however, you really need to validate under test in a function and test that. Sometimes, however, you really need to validate
that those channels behave the way you want. that those channels behave the way you want.
--- ---
I have been working on an [emulator for the MOS 6502 Microprocessor, written in Go](1). As I have been working on an [emulator for the MOS 6502 Microprocessor, written in Go][1]. As
part of this package I have also implemented a minimal 6551 Asynchronous Communication Interface part of this package I have also implemented a minimal 6551 Asynchronous Communication Interface
Adapter. The 6551 provides serial IO and is easy to use in combination with the 6502. Adapter. The 6551 provides serial IO and is easy to use in combination with the 6502.
@ -90,7 +90,7 @@ the writing of the byte with the output appearing on the output channel.
This is an example of simple synchronization using a seperate channel, in this case `chan bool`. This is an example of simple synchronization using a seperate channel, in this case `chan bool`.
It worked great in my tests to verify data was actually written to the output channel. It worked great in my tests to verify data was actually written to the output channel.
[Read more about my i6502 project](2) [Read more about my i6502 project][2]
[1]: https://github.com/ariejan/i6502 [1]: https://github.com/ariejan/i6502
[2]: http://ariejan.github.io/i6502/ [2]: http://ariejan.github.io/i6502/