How to define RAM BANK1?
The ram of SONIX USB IC's is at least 256, up to 512, so ram is divided into BANK0,
BANK1, even BANK2. When user define more than one ram BANK, he can use the following
way to define the next ram BANK variables.
.DATA | //Variables definition |
ORG 0X00 | //BANK0 ram address |
Buffer DS 1 | //BANK0 variables |
............................................ | |
ORG 0X100 | //BANK1 ram address |
Buffer1 DS 1 | //BANK1 variables。 |