Skip to content

Commit 49b6d5a

Browse files
committed
Moves BASIC tokenizer into zxbasm
This will be part of the future linker
1 parent 500ff30 commit 49b6d5a

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

zxbasm/asmparse.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
import os
1515
import re
16-
from zxbasm import asmlex
16+
from zxbasm import asmlex, basic
1717
import ply.yacc as yacc
1818

1919
from zxbasm.asmlex import tokens # noqa
@@ -1501,7 +1501,6 @@ def generate_binary(outputfname, format_, progname='', binary_files=None, headle
15011501
progname = os.path.basename(outputfname)[:10]
15021502

15031503
if OPTIONS.use_loader.value:
1504-
import basic # Minimalist basic tokenizer
15051504

15061505
program = basic.Basic()
15071506
if org > 16383: # Only for zx48k: CLEAR if above 16383
File renamed without changes.

0 commit comments

Comments
 (0)