Topic : TOS - das Betriebssystem
Author :
Version : tos.hyp (5. März 2013)
Subject : Programmieren/Atari
Nodes : 3001
Index Size : 93602
HCP-Version : 5
Compiled on : Atari
@charset : atarist
@lang :
@default : Titel
@help :
@options : +g -i -s +x +zz -t4
@width : 70
View Ref-File7.5.12 Bindings für v_cellarray TOS
C: void v_cellarray ( int16_t handle, int16_t *pxyarray,
int16_t row_length, int16_t el_used, int16_t num_rows,
int16_t wrt_mode, int16_t *colarray );
Umsetzung:
void v_cellarray (int16_t handle, int16_t *pxyarray,
int16_t row_length, int16_t el_used,
int16_t num_rows, int16_t wrt_mode,
int16_t *colarray)
{
int16_t n;
n = row_length * num_rows;
intin[0..n-1] = colarray[0..n-1];
ptsin[0..3] = pxyarray[0..3];
contrl[0] = 10;
contrl[1] = 2;
contrl[3] = n;
contrl[6] = handle;
contrl[7] = row_length;
contrl[8] = el_used;
contrl[9] = num_rows;
contrl[10] = wrt_mode;
vdi ();
}
GEM-Arrays:
Adresse Feldelement Belegung
contrl contrl[0] 10 # Opcode der Funktion
contrl+2 contrl[1] 2 # Einträge in ptsin
contrl+4 contrl[2] 0 # Einträge in ptsout
contrl+6 contrl[3] n # Einträge in intin
contrl+8 contrl[4] 0 # Einträge in intout
contrl+12 contrl[6] handle
contrl+14 contrl[7] row_length
contrl+16 contrl[8] el_used
contrl+18 contrl[9] num_rows
contrl+20 contrl[10] wrt_mode
intin intin[0..n-1] colarray[0..n-1]
ptsin ptsin[0..3] pxyarray[0..3]
Hinweis: n ist hier die #Zeilen * #Spalten der
Zellenaufteilung.