1
0
mirror of https://github.com/safiire/n65.git synced 2024-06-10 15:29:53 +00:00
n65/lib/n65/opcodes.rb
2020-08-30 12:53:04 -07:00

8 lines
136 B
Ruby

# frozen_string_literal: true
require 'yaml'
module N65
OpCodes = YAML.load_file(File.join(__dir__, '../../data/opcodes.yaml'))
end