Where I try playing a sample via PwmOutput

Dependencies:   LCD_ST7735 mbed

Reading some old ZX Spectrum forums, I wanted to check wether playing a sample was possible. So far, no, but there's more things to try.

Revision:
0:167d81d4f79f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Row.cpp	Sun Mar 08 21:51:59 2015 +0000
@@ -0,0 +1,6 @@
+#include "Row.h"
+
+Row::Row(int _pos, char* _sound) {
+    pos = _pos;
+    sound = _sound;
+}