1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-11-20 03:33:14 +00:00
C02/x16/include/vera.h02

21 lines
597 B
Plaintext
Raw Normal View History

2019-09-23 23:57:03 +00:00
/***************************************************
* vera.h02 - Commander X16 Routines for Vera chip *
***************************************************/
/* Convert R, G, and B Values *
* to Palette Color Value *
* Args: r - Red Value (0-15) *
* g - Green Value (0-15) *
* b - Blue Value (0-15) *
* Returns: int c - Color Value */
char rgbclr();
2019-09-25 19:56:26 +00:00
/* Convert Palette Color Value *
* to R, G, and B Values *
* Args: int c - Color Value *
* Returns: Red Value (0-15) *
* Green Value (0-15) *
* Blue Value (0-15) */
char clrrgb();
2019-09-23 23:57:03 +00:00