mirror of
https://github.com/safiire/n65.git
synced 2024-12-12 00:29:03 +00:00
10 lines
213 B
Ruby
10 lines
213 B
Ruby
require 'yaml'
|
|
|
|
module Assembler6502
|
|
|
|
## Load OpCode definitions into this module
|
|
MyDirectory = File.expand_path(File.dirname(__FILE__))
|
|
OpCodes = YAML.load_file("#{MyDirectory}/../data/opcodes.yaml")
|
|
|
|
end
|