summaryrefslogtreecommitdiff
path: root/avr/cmd_boot.c
diff options
context:
space:
mode:
authorLeo C2018-09-08 09:39:06 +0200
committerLeo C2018-09-08 09:39:06 +0200
commit226d32211880a061265faf6b8eadaf6ca1ec7a38 (patch)
tree7e3acd41732e9e53cd65160ace61a5e74e85bd04 /avr/cmd_boot.c
parentf66d9570ec64ecaa1f879619a0e4fed8d5fa7803 (diff)
downloadz180-stamp-226d32211880a061265faf6b8eadaf6ca1ec7a38.zip
New command cpuchk
move z80_load_mem() to z80-if.c
Diffstat (limited to 'avr/cmd_boot.c')
-rw-r--r--avr/cmd_boot.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/avr/cmd_boot.c b/avr/cmd_boot.c
index 600bad3..2159608 100644
--- a/avr/cmd_boot.c
+++ b/avr/cmd_boot.c
@@ -31,33 +31,6 @@
#undef const
-
-static void z80_load_mem(int_fast8_t verbosity,
- const FLASH unsigned char data[],
- const FLASH unsigned long *sections,
- const FLASH unsigned long address[],
- const FLASH unsigned long length_of_sections[])
-{
- uint32_t sec_base = 0;
-
- if (verbosity > 1)
- printf_P(PSTR("Loading Z180 memory... \n"));
-
- for (unsigned sec = 0; sec < *sections; sec++) {
- if (verbosity > 0) {
- printf_P(PSTR(" From: 0x%.5lX to: 0x%.5lX (%5li bytes)\n"),
- address[sec],
- address[sec]+length_of_sections[sec] - 1,
- length_of_sections[sec]);
- }
-
- z80_write_block_P((const FLASH unsigned char *) &data[sec_base], /* src */
- address[sec], /* dest */
- length_of_sections[sec]); /* len */
- sec_base += length_of_sections[sec];
- }
-}
-
command_ret_t do_loadf(cmd_tbl_t *cmdtp UNUSED, uint_fast8_t flag UNUSED, int argc UNUSED, char * const argv[] UNUSED)
{
if (z80_bus_state() & ZST_RUNNING)