/* wee! */
if (fb && !fb->curmode.text)
{
- output("not text! nope nope nope");
int ass[][2] = {
{1,0}, {4,0},{5,0},{6,0}, {8,0},{9,0},{10,0},
{0,1}, {2,1}, {4,1}, {8,1},
for (y = 0; y < 8; y++)
for (x = 0; x < 8; x++)
{
- unsigned long a =
- (unsigned long) fb->fbaddr +
- ((y+ass[p][1]*8) * fb->curmode.xres + ass[p][0]*8 + x) * 4;
- *(unsigned long *)p2v(a) = 0xFF0000FF;
+ unsigned long *a =
+ (unsigned long*) fb->fbaddr +
+ ((y+ass[p][1]*8) * fb->curmode.xres + ass[p][0]*8 + x);
+ *a = 0xFF0000FF;
}
}
}