mirror of
https://github.com/safiire/n65.git
synced 2024-12-12 00:29:03 +00:00
15 lines
225 B
Ruby
15 lines
225 B
Ruby
|
|
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
|