diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b97a4f..aea07b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: N65 CI +name: N65 on: push: diff --git a/.gitignore b/.gitignore index 31a81b3..5a1334f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ -demo.asm *.nes *.nes.yaml +*.nes.cycles.yaml .DS_Store Desktop.ini Thumbs.db diff --git a/lib/n65/symbol_table.rb b/lib/n65/symbol_table.rb index af7434f..6ad4750 100644 --- a/lib/n65/symbol_table.rb +++ b/lib/n65/symbol_table.rb @@ -4,7 +4,6 @@ module N65 class SymbolTable attr_accessor :scope_stack - # Custom Exceptions class InvalidScope < StandardError; end class UndefinedSymbol < StandardError; end class CantExitScope < StandardError; end