OK, here is the 2600basic.h file, with some sample code.
You only get variables a-o. Variables p-z do not exist in this file. The row colors 1-11 may be set by row1, row2, row3, up to row11. "Row 0" is the topmost row, and it must be set using COLUPF every frame. Note that these variables are stored in RAM stepping by 4 bytes at a time, so if you instead want to assign mycolor to row "a", where a=1-11, you can do the following:
temp1=(a-1)*4:row1[temp1]=mycolor
The sample program (included) shows one way to set row colors based on a cursor position.
Edited by batari, Thu Mar 20, 2008 2:46 AM.