--- 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][].
--- 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][].
--- 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][].
--- 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][].
--- 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][].