mirror of
https://github.com/safiire/n65.git
synced 2025-01-27 06:30:45 +00:00
12 lines
303 B
Ruby
Executable File
12 lines
303 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
###############################################################################
|
|
## 6502 Assembler for the NES's 2A03
|
|
##
|
|
## Usage: ./n65 <infile.asm>
|
|
##
|
|
## This file runs the assembler though the commandline frontend.
|
|
|
|
require_relative 'lib/front_end'
|
|
|
|
N65::FrontEnd.new(ARGV).run
|