7 #pragma disable_warning 85
9 const unsigned char *letras_tiles01
;
11 extern void msx_vfill(unsigned int addr
, unsigned int value
, unsigned int count
) __smallc
15 extern void msx_vwrite_direct(void* source
, unsigned int dest
, unsigned int count
) __smallc
19 void poner_texto_tiles(unsigned char *texto
, unsigned int size
, unsigned int posicion
, unsigned char color
)
28 msx_vfill((posicion
<< 3), 0x00, 8);
32 msx_vwrite_direct(letras_tiles01
+ ((*(texto
+ i
) - 65) << 3), posicion
<< 3, 8);