-
Notifications
You must be signed in to change notification settings - Fork 21
/
gatodecodercolsdownl.cpp
52 lines (39 loc) · 1.31 KB
/
gatodecodercolsdownl.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
#include "gatodecodercolsdownl.h"
#include <QDebug>
/* In Zorrom, the equivalent would be cols-downl.
*/
GatoDecoderColsDownL::GatoDecoderColsDownL(){
name="cols-downl";
}
QByteArray GatoDecoderColsDownL::decode(GatoROM *gr){
uint32_t adr=0;
QByteArray ba;
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(unsigned int word=0; word<(gr->outputcols/wordsize); 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;
}