Update ci name and gitignore

This commit is contained in:
Saf 2020-09-06 10:27:29 -07:00
parent 2b5e170922
commit e11d3e0170
3 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
name: N65 CI
name: N65
on:
push:

2
.gitignore vendored
View File

@ -1,6 +1,6 @@
demo.asm
*.nes
*.nes.yaml
*.nes.cycles.yaml
.DS_Store
Desktop.ini
Thumbs.db

View File

@ -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