# HG changeset patch # User Steve Losh # Date 1482773387 18000 # Node ID 2e6d03f14eb7c8f47feedf9e7ede01378ade222a # Parent 6b4d51f1c30dcf8b885c69506e15e9ceb53949a9 Publish sound diff -r 6b4d51f1c30d -r 2e6d03f14eb7 content/blog/2016/12/chip8-cpu.markdown --- a/content/blog/2016/12/chip8-cpu.markdown Mon Dec 26 12:28:40 2016 -0500 +++ b/content/blog/2016/12/chip8-cpu.markdown Mon Dec 26 12:29:47 2016 -0500 @@ -35,6 +35,7 @@ 1. [CHIP-8 in Common Lisp: The CPU](http://stevelosh.com/blog/2016/12/chip8-cpu/) 2. [CHIP-8 in Common Lisp: Graphics](http://stevelosh.com/blog/2016/12/chip8-graphics/) 3. [CHIP-8 in Common Lisp: Input](http://stevelosh.com/blog/2016/12/chip8-input/) +4. [CHIP-8 in Common Lisp: Sound](http://stevelosh.com/blog/2016/12/chip8-sound/) The full emulator source is on [BitBucket][] and [GitHub][]. diff -r 6b4d51f1c30d -r 2e6d03f14eb7 content/blog/2016/12/chip8-disassembly.markdown --- a/content/blog/2016/12/chip8-disassembly.markdown Mon Dec 26 12:28:40 2016 -0500 +++ b/content/blog/2016/12/chip8-disassembly.markdown Mon Dec 26 12:29:47 2016 -0500 @@ -21,6 +21,7 @@ 1. [CHIP-8 in Common Lisp: The CPU](http://stevelosh.com/blog/2016/12/chip8-cpu/) 2. [CHIP-8 in Common Lisp: Graphics](http://stevelosh.com/blog/2016/12/chip8-graphics/) 3. [CHIP-8 in Common Lisp: Input](http://stevelosh.com/blog/2016/12/chip8-input/) +4. [CHIP-8 in Common Lisp: Sound](http://stevelosh.com/blog/2016/12/chip8-sound/) The full emulator source is on [BitBucket][] and [GitHub][]. diff -r 6b4d51f1c30d -r 2e6d03f14eb7 content/blog/2016/12/chip8-graphics.markdown --- a/content/blog/2016/12/chip8-graphics.markdown Mon Dec 26 12:28:40 2016 -0500 +++ b/content/blog/2016/12/chip8-graphics.markdown Mon Dec 26 12:29:47 2016 -0500 @@ -15,6 +15,7 @@ 1. [CHIP-8 in Common Lisp: The CPU](http://stevelosh.com/blog/2016/12/chip8-cpu/) 2. [CHIP-8 in Common Lisp: Graphics](http://stevelosh.com/blog/2016/12/chip8-graphics/) 3. [CHIP-8 in Common Lisp: Input](http://stevelosh.com/blog/2016/12/chip8-input/) +4. [CHIP-8 in Common Lisp: Sound](http://stevelosh.com/blog/2016/12/chip8-sound/) The full emulator source is on [BitBucket][] and [GitHub][]. diff -r 6b4d51f1c30d -r 2e6d03f14eb7 content/blog/2016/12/chip8-input.markdown --- a/content/blog/2016/12/chip8-input.markdown Mon Dec 26 12:28:40 2016 -0500 +++ b/content/blog/2016/12/chip8-input.markdown Mon Dec 26 12:29:47 2016 -0500 @@ -16,6 +16,7 @@ 1. [CHIP-8 in Common Lisp: The CPU](http://stevelosh.com/blog/2016/12/chip8-cpu/) 2. [CHIP-8 in Common Lisp: Graphics](http://stevelosh.com/blog/2016/12/chip8-graphics/) 3. [CHIP-8 in Common Lisp: Input](http://stevelosh.com/blog/2016/12/chip8-input/) +4. [CHIP-8 in Common Lisp: Sound](http://stevelosh.com/blog/2016/12/chip8-sound/) The full emulator source is on [BitBucket][] and [GitHub][]. diff -r 6b4d51f1c30d -r 2e6d03f14eb7 content/blog/2016/12/chip8-sound.markdown --- a/content/blog/2016/12/chip8-sound.markdown Mon Dec 26 12:28:40 2016 -0500 +++ b/content/blog/2016/12/chip8-sound.markdown Mon Dec 26 12:29:47 2016 -0500 @@ -1,8 +1,8 @@ +++ title = "CHIP-8 in Common Lisp: Sound" snip = "Let's add a buzzer." -date = 2016-12-30T14:50:00Z -draft = true +date = 2016-12-26T17:30:00Z +draft = false +++ @@ -16,6 +16,7 @@ 1. [CHIP-8 in Common Lisp: The CPU](http://stevelosh.com/blog/2016/12/chip8-cpu/) 2. [CHIP-8 in Common Lisp: Graphics](http://stevelosh.com/blog/2016/12/chip8-graphics/) 3. [CHIP-8 in Common Lisp: Input](http://stevelosh.com/blog/2016/12/chip8-input/) +4. [CHIP-8 in Common Lisp: Sound](http://stevelosh.com/blog/2016/12/chip8-sound/) The full emulator source is on [BitBucket][] and [GitHub][].