Skip to content

Commit

Permalink
Refine wording
Browse files Browse the repository at this point in the history
  • Loading branch information
yhzhang0128 committed Jan 27, 2022
1 parent 3f7ad9b commit de93022
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ images:
$(CC) $(BUILD_DIR)/mkfs.c -o $(BUILD_DIR)/mkfs
cd $(BUILD_DIR); ./mkfs
@echo "$(YELLOW)-------- Create the BootROM Image --------$(END)"
@echo "[Note] Require vivado_lab in your \$$PATH. Otherwise, you can execute the tcl command in $(BUILD_DIR)/arty_board/write_cfgmem.tcl manually in Vivado (the input box at the bottom of hardware manager)."
$(OBJCOPY) -O binary $(RELEASE_DIR)/earth.elf $(BUILD_DIR)/earth.bin
$(CC) $(BUILD_DIR)/mkrom.c -o $(BUILD_DIR)/mkrom
cd $(BUILD_DIR); ./mkrom
Expand Down
6 changes: 3 additions & 3 deletions install/mkrom.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ void write_mcs() {
freopen(output_file, "w", stdout);

write_mcs_section(mem_fe310, 0x00, fe310_size);
fprintf(stderr, "[INFO] FE310 wrote\n");
fprintf(stderr, "[INFO] FE310 written\n");
write_mcs_section(mem_earth, 0x40, earth_size);
fprintf(stderr, "[INFO] Earth wrote\n");
fprintf(stderr, "[INFO] Earth written\n");
write_mcs_section(mem_disk, 0x80, disk_size);
fprintf(stderr, "[INFO] Disk image wrote\n");
fprintf(stderr, "[INFO] Disk image written\n");
printf(":00000001FF\n");

fclose(stdout);
Expand Down

0 comments on commit de93022

Please sign in to comment.