A92: Re: Disp in assembly


[Prev][Next][Index][Thread]

A92: Re: Disp in assembly



Voici le code pour 'disp' en assembleur, pour Fargo II :

;==============================;
; \1 =  #ligne
; \2 = #colonne
; \3 = #couleur(1-4)
; \4 = nom de la chaîne de caractères
;==============================;
  move.w  \3,-(a7)
  pea  \4(PC)
  move.w  \1,-(a7)
  move.w  \2,-(a7)
  jsr  tios::DrawStrXY
  lea  10(a7),a7

Ci-joint 2 fichiers asm et 1 fichier 92p. Je faisais une série de tests pour
voir comment ça fonctionnait il y a 2 mois. Petit à petit, j'ai compris
grace à mes tests, car je ne comprenait pas vraiment les explications. Les
tests sont la meilleure manière de voir à quoi telle ou telle ligne sert,
pourquoi on fait ceci ou cela...
J'espère t'avoir aidé un peu quand même. Si tu as d'autres questions,
n'hésite pas et j'essairais de te répondre, en français.

MP
<philhuck@club-internet.fr>


-----Message d'origine-----
De : Priour Gaëtan <pprj@csi.com>
À : assembly-92@lists.ticalc.org <assembly-92@lists.ticalc.org>
Date : dimanche 6 septembre 1998 16:28
Objet : A92: Disp in assembly


>
>Can I have the code in assembly for a "disp" in basic ?
>
>Comment afficher un "disp" en assembleur ?
>
>@+
>Gaëtan
>pprj@csi.com
>
>
>
>
>

Test5.asm

test5.92p

Test3.asm