mirror of
https://git.planet-casio.com/Lephenixnoir/fxsdk.git
synced 2024-12-28 20:43:37 +01:00
(irrelevant fixes)
This commit is contained in:
parent
8eed69b7a0
commit
2596a53c6b
2 changed files with 3 additions and 3 deletions
|
@ -30,8 +30,8 @@ syntax (names can contain dots). For example:
|
||||||
fxconv -f myfont.png -o myfont.o charset:ascii grid.padding:1 height:7
|
fxconv -f myfont.png -o myfont.o charset:ascii grid.padding:1 height:7
|
||||||
|
|
||||||
Some formats differ between platforms so you should specify it when possible:
|
Some formats differ between platforms so you should specify it when possible:
|
||||||
--fx, --fx9860G Casio fx-9860G family (black-and-white calculators)
|
--fx Casio fx-9860G family (black-and-white calculators)
|
||||||
--cg, --fxCG50 Casio fx-CG 50 family (16-bit color calculators)
|
--cg Casio fx-CG 50 family (16-bit color calculators)
|
||||||
""".strip()
|
""".strip()
|
||||||
|
|
||||||
# Simple error-warnings system
|
# Simple error-warnings system
|
||||||
|
|
|
@ -1100,7 +1100,7 @@ def elf(data, output, symbol, toolchain=None, arch=None, section=None,
|
||||||
os.remove(fp_asm.name + ".o")
|
os.remove(fp_asm.name + ".o")
|
||||||
|
|
||||||
if proc.returncode != 0:
|
if proc.returncode != 0:
|
||||||
raise FxconvError("ld returned {proc.returncode}")
|
raise FxconvError(f"ld returned {proc.returncode}")
|
||||||
|
|
||||||
fp_asm.close()
|
fp_asm.close()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue