QUOTE(oosnapdood @ Jan 27 2010, 06:05 AM)

are the following erase commands interchangeable?
nandpro lpt: -e16
nandpro lpt: -e16 0 400
nandpro lpt: -e16 0x000000
not really sure, but nandpro lpt: -e16 ==> erases the whole nand. this ==> nandpro lpt: -e16 0x000000 ==> (0x000) tells the first block to start erasing, so e16 and e16 0x00 do the same. nandpro lpt: -e16 0 400 ==> will not work i think, since 0 is not a valid starting address. should be 0x000, for 400 the same, should be 0x400. if it is not correct, it will start erasing from 0x000. so then they all do the same.