From 8f01494fbb371c09deea1a892a50090ad445b159 Mon Sep 17 00:00:00 2001 From: Safiire Date: Tue, 24 Feb 2015 17:37:00 -0800 Subject: [PATCH] Trying to re-organize my classes, and add a base class for objects which can emit_bytes to the ROM --- lib/emits_bytes.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 lib/emits_bytes.rb diff --git a/lib/emits_bytes.rb b/lib/emits_bytes.rb new file mode 100644 index 0000000..19582ee --- /dev/null +++ b/lib/emits_bytes.rb @@ -0,0 +1,14 @@ + +module Assembler6502 + + #### + ## This is a base class for anything which can emit bytes + class EmitsBytes + + def emit_bytes + fail(NotImplementedError, "#{self.class} must implement emit_bytes") + end + + end + +end