mirror of
https://github.com/mattrberry/crab.git
synced 2025-02-13 20:48:35 +01:00
18 lines
214 B
Crystal
18 lines
214 B
Crystal
require "bitfield"
|
|
|
|
require "./crab/gba"
|
|
|
|
module Crab
|
|
VERSION = "0.1.0"
|
|
|
|
extend self
|
|
|
|
def run
|
|
gba = GBA.new ARGV[0]
|
|
gba.run
|
|
end
|
|
end
|
|
|
|
unless PROGRAM_NAME.includes?("crystal-run-spec")
|
|
Crab.run
|
|
end
|