1
0
mirror of https://github.com/safiire/n65.git synced 2024-12-12 00:29:03 +00:00
n65/lib/emits_bytes.rb

15 lines
225 B
Ruby
Raw Normal View History

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