mirror of
https://github.com/michaelcmartin/Ophis.git
synced 2025-01-03 05:29:19 +00:00
Catch IOError in .incbin and .charmapbin pragmas.
This commit is contained in:
parent
5392f4c2d4
commit
a1cc6db760
@ -43,9 +43,13 @@ def pragmaIncbin(ppt, line, result):
|
||||
filename = line.expect("STRING").value
|
||||
line.expect("EOL")
|
||||
if type(filename)==str:
|
||||
try:
|
||||
f = file(filename, "rb")
|
||||
bytes = f.read()
|
||||
f.close()
|
||||
except IOError:
|
||||
Err.log ("Could not read "+filename)
|
||||
return
|
||||
bytes = [IR.ConstantExpr(ord(x)) for x in bytes]
|
||||
result.append(IR.Node(ppt, "Byte", *bytes))
|
||||
|
||||
@ -72,9 +76,13 @@ def pragmaCharmapbin(ppt, line, result):
|
||||
filename = line.expect("STRING").value
|
||||
line.expect("EOL")
|
||||
if type(filename)==str:
|
||||
try:
|
||||
f = file(filename, "rb")
|
||||
bytes = f.read()
|
||||
f.close()
|
||||
except IOError:
|
||||
Err.log ("Could not read "+filename)
|
||||
return
|
||||
if len(bytes)==256:
|
||||
currentcharmap = bytes
|
||||
else:
|
||||
|
Loading…
Reference in New Issue
Block a user