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