1
0
mirror of https://github.com/safiire/n65.git synced 2024-06-02 05:41:36 +00:00
n65/bin/n65

14 lines
341 B
Plaintext
Raw Normal View History

2015-02-18 03:05:37 +00:00
#!/usr/bin/env ruby
# frozen_string_literal: true
2015-02-18 03:05:37 +00:00
###############################################################################
2015-03-29 17:19:19 +00:00
## 6502 Assembler for the NES's 2A03
2015-02-18 03:05:37 +00:00
##
2015-03-29 17:19:19 +00:00
## Usage: ./n65 <infile.asm>
2015-02-18 03:05:37 +00:00
##
## This file runs the assembler though the commandline frontend.
2015-02-18 03:05:37 +00:00
2015-03-31 09:40:12 +00:00
require_relative '../lib/n65/front_end'
2015-02-18 03:05:37 +00:00
2015-03-29 17:19:19 +00:00
N65::FrontEnd.new(ARGV).run