ARTICLES
2 / 74 |
Exemples de base
HEXA | ASSEMBLEUR | EXPLICATIONS | EQUIVALENT BASIC |
CD,FF,BB | CALL #BBFF | Initialisation de la gestion écran | |
3E,02 CD,0E,BC |
ld a,2 CALL #BC0E |
Mode graphique 2 Initialisation |
Mode 2 |
3E,00 06,00 0E,00 CD,32,BC |
ld a,0 ld b,0 ld c,0 CALL #BC32 |
n° pen 1ère couleur 2ème couleur Initialisation |
ink 0,0,0 |
06,00 0E,00 CD,38,BC |
ld b,0 ld c,0 CALL #BC38 |
1ère couleur |
Border 0,0 |
26,02 2E,02 CD,75,BB |
ld H,2 ld L,2 CALL #BB75 |
n° colonne n° de ligne Attention le locate commence en 0,0 |
locate 2,2 |
3E,01 CD,90,BB |
ld a,1 CALL #BB90 |
N° du pen Initialisation |
pen 1 |
3E,01 CD,96,BB |
ld a,1 CALL #BB96 |
n° du paper Initialisation |
paper 1 |
CD,6C,BB | CALL #BB6C | Initialisation | cls |
21,00,50 7E FE,00 C8 CD,5A,BB 23 18,F6 |
ld hl,#5000 ld a,(HL) cp #00 ret z CALL #BB5A inc HL JR #700A |
adresse de début du texte si a = 0 retour sinon afficher a HL+1 |
PRINT"BLABLA" |
Article créé le : | Mardi 10 Février 2009 à 00 h 00 |
Dernière mise à jour le : | Mardi 28 Février 2012 à 21 h 25 |