晨
晨晨
Unregistered / Unconfirmed
GUEST, unregistred user!
下面的代码,目的是读第一个0x04000字节组,对不?
为什么要这样写呢?有什么好处?迷惑?
int total = 0x04000;
do
{
total -= is.read(firstBank, 0x04000 - total, total);
// Read the first bank (bank 0)
} while (total > 0);
为什么要这样写呢?有什么好处?迷惑?
int total = 0x04000;
do
{
total -= is.read(firstBank, 0x04000 - total, total);
// Read the first bank (bank 0)
} while (total > 0);