diff --git a/recipes/ti84/Makefile b/recipes/ti84/Makefile index 7700de6..bce38c9 100644 --- a/recipes/ti84/Makefile +++ b/recipes/ti84/Makefile @@ -19,8 +19,7 @@ emul: $(EMUL) $(TARGET) $(EMUL) $(TARGET) os.rom: $(TARGET) - cp $(TARGET) $@ - truncate -s 1M $@ + dd if=$(TARGET) bs=1M of=$@ conv=sync os.8xu: os.rom $(MKTIUPGRADE) -p -k keys/0A.key -d TI-84+ os.rom $@ 00