bios/software: rename cmd_dram/cmd_sdcard/cmd_spi_flash to cmd_litedram/cmd_litesdcard/cmd_spiflash.

This commit is contained in:
Florent Kermarrec 2020-05-18 22:19:02 +02:00
parent 573a881529
commit c95084e5c6
4 changed files with 4 additions and 4 deletions

View File

@ -19,11 +19,11 @@ OBJECTS = isr.o \
helpers.o \ helpers.o \
cmd_bios.o \ cmd_bios.o \
cmd_boot.o \ cmd_boot.o \
cmd_dram.o \ cmd_litedram.o \
cmd_liteeth.o \ cmd_liteeth.o \
cmd_mem.o \ cmd_mem.o \
cmd_sdcard.o \ cmd_litesdcard.o \
cmd_spi_flash.o \ cmd_spiflash.o \
ifneq "$(or $(TERM_NO_COMPLETE),$(TERM_MINI))" "" ifneq "$(or $(TERM_NO_COMPLETE),$(TERM_MINI))" ""
CFLAGS += -DTERM_NO_COMPLETE CFLAGS += -DTERM_NO_COMPLETE

View File

@ -25,7 +25,7 @@ static void sdrrow_handler(int nb_params, char **params)
sdrrow(0); sdrrow(0);
printf("Precharged"); printf("Precharged");
} }
row = strtoul(params[0], &c, 0); row = strtoul(params[0], &c, 0);
if (*c != 0) { if (*c != 0) {
printf("Incorrect row"); printf("Incorrect row");