URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [mw/] [src/] [engine/] [devpal2.c] - Rev 1765
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Copyright (c) 1999 Greg Haerr <greg@censoft.com> * * 2pbb (4 color) standard palette definition */ #include "device.h" /* * Standard palette for Everex Freestyle Palm PC * This palette is in reverse order from some 2bpp systems. * That is, white is pixel value 0, while black is 3. */ MWPALENTRY mwstdpal2[4] = { RGBDEF( 255, 255, 255 ), /* white*/ RGBDEF( 192, 192, 192 ), /* ltgray*/ RGBDEF( 128, 128, 128 ), /* gray*/ RGBDEF( 0 , 0 , 0 ) /* black*/ };
Go to most recent revision | Compare with Previous | Blame | View Log