Proper names for internal boost/basewords texts

This commit is contained in:
Kamil Zbrog 2017-03-31 22:10:55 +02:00
parent de14ad2975
commit 55081da386

4
foco65
View File

@ -1972,8 +1972,8 @@ with open(args.file, "rt") as f:
f = Forth(args.sections.split(",")) f = Forth(args.sections.split(","))
try: try:
f.parse_input(Input(boot_text % boot_params), "boot_text % boot_params") f.parse_input(Input(boot_text % boot_params), "foco65(boot_text)")
f.parse_input(Input(basewords_text), "basewords_text") f.parse_input(Input(basewords_text), "foco65(basewords_text)")
f.parse_input(Input(text), args.file) f.parse_input(Input(text), args.file)
print f.generate_output() print f.generate_output()
except (ParseError, StackUnderflow, StackNotEmpty) as e: except (ParseError, StackUnderflow, StackNotEmpty) as e: