1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2026-04-27 02:17:59 +00:00

support `include statements in verilog; book link changes; paddle/switches; scope transitions

This commit is contained in:
Steven Hugg
2017-11-14 19:12:52 -05:00
parent 4256ee7bc2
commit 4f73cde7cc
13 changed files with 3855 additions and 47 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ describe('Worker', function() {
compile('plasm', 'word x = ', 'apple2', done, 0, 0, 1);
});
it('should compile CC65', function(done) {
compile('cc65', 'int main() {\nint x=1;\nreturn x+2;\n}', 'nes-conio', done, 2947, 4);
compile('cc65', 'int main() {\nint x=1;\nreturn x+2;\n}', 'nes-conio', done, 40976, 3);
});
it('should NOT compile CC65', function(done) {
compile('cc65', 'int main() {\nint x=1;\nprintf("%d",x);\nreturn x+2;\n}', 'nes-conio', done, 0, 0, 1);