2003-06-18 Marcel Telka <marcel@telka.sk>

* /src/flash.c (flash_drivers): Added 1 x 8 bit Intel Flash driver (patch 753295, Matan Ziv-Av).


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@487 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 22 years ago
parent 8e58ac6d1c
commit 70c4a01ef7

@ -1,3 +1,7 @@
2003-06-18 Marcel Telka <marcel@telka.sk>
* /src/flash.c (flash_drivers): Added 1 x 8 bit Intel Flash driver (patch 753295, Matan Ziv-Av).
2003-06-12 Marcel Telka <marcel@telka.sk>
* include/flash.h (flash_driver_t): Structure removed.

@ -1,5 +1,7 @@
$Id$
See libbrux/NEWS for more news.
* Fixed bug with SELECT, AUTOFD, and STROBE signals handling (bug 745824).
* Added new commands 'peek' and 'poke' (patch 747447, Matan Ziv-Av).
* Fixed bugs in SH7727 bus driver (thanks to Rainer Dörken).

@ -49,11 +49,13 @@
extern flash_driver_t amd_32_flash_driver;
extern flash_driver_t intel_32_flash_driver;
extern flash_driver_t intel_16_flash_driver;
extern flash_driver_t intel_8_flash_driver;
flash_driver_t *flash_drivers[] = {
&amd_32_flash_driver,
&intel_32_flash_driver,
&intel_16_flash_driver,
&intel_8_flash_driver,
NULL
};

Loading…
Cancel
Save