-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathgatodecodercolsdownr.cpp
58 lines (45 loc) · 1.62 KB
/
gatodecodercolsdownr.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include "gatodecodercolsdownr.h"
#include <QDebug>
/* This decoder was intended for the GameBoy's LR35902 CPU and
* its mask ROM. Bytes are encoded in 16-bit logical columns made of
* two 8-bit physical columns. The leftmost column contains the most
* significant bits, and the first byte of the row is in the leftmost
* positions. Go first down, then to the right.
*
* In Zorrom, the equivalent would be cols-downr.
*/
GatoDecoderColsDownR::GatoDecoderColsDownR(){
name="cols-downr";
}
QByteArray GatoDecoderColsDownR::decode(GatoROM *gr){
QByteArray ba;
uint32_t adr=0;
int wordsize=gr->wordsize;
gr->eval();
//We might be dynamic, but we still don't want to crash.
if(gr->outputcols%wordsize!=0) return ba;
int skip=gr->outputcols/wordsize;
//Each row contains sixteen 8-bit words.
//We calculate that dynamically to be more generic.
for(int word=(gr->outputcols/wordsize)-1; word>=0; word--){
for(unsigned int row=0; row<gr->outputrows; row++){
uint32_t w=0;
for(int bit=wordsize-1; bit>=0; bit--){
GatoBit *B=gr->outputbit(row, bit*skip+word);
assert(B); //If this fails, we're about to crash.
//Update target address and mask.
B->adr=adr;
B->mask=1<<bit;
if(B->getVal())
w|=B->mask;
}
//This is implicitly little endian.
for(int bitcount=wordsize; bitcount>0; bitcount-=8){
ba.append(w&0xFF);
w=w>>8;
adr++;
}
}
}
return ba;
}