1

comment on fait une macro ?
Y a deux fesses qui sont sur la plage et l'une dit à l'autre :
"Qu'est ce qu'on fait maintenant ?"
Et l'autre lui répond :
"Ben PROUT !!!"

2

Bah regarde os.h ou doorsos.h
Cours et tutos Asm: http://membres.lycos.fr/sirryl

3

ok
Y a deux fesses qui sont sur la plage et l'une dit à l'autre :
"Qu'est ce qu'on fait maintenant ?"
Et l'autre lui répond :
"Ben PROUT !!!"

4

un pti nexemple : smile

WriteStr MACRO ;
MOVE.w \4,-(A7) ;
PEA \3(PC) ;
MOVE.w \2,-(A7) ;
MOVE.w \1,-(A7) ;
JSR tios:grinrawStrXY ;
LEA 10(A7),A7 ;
ENDM ;

WriteStr #4,#10,#10,hello;

hello dc.c "Hello",0;

[edit]Edité par TachMan le 11-03-2002 à 19:22:43[/edit]
Fiou.

5

merde j'avais oublié pour le grin
Fiou.

6

ça devrait être mieux comme ça :

	WriteStr MACRO      ;		
	MOVE.w	4,-(A7) ;
	PEA	3(PC)   ;
	MOVE.w	2,-(A7) ;
	MOVE.w	1,-(A7)  ;	
	JSR	tios::DrawStrXY ;	
	LEA	10(A7),A7 ;
	ENDM ;

WriteStr #4,#10,#10,hello; 

hello dc.c "Hello",0;


pre powa
avatar
Tutorial C (TI-89/92+/v200) - Articles Développement Web (PHP, Javascript, ...)
« What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against? » - Larry Wall

7

arf... merde alors sad
pre powa pas du tout
avatar
Tutorial C (TI-89/92+/v200) - Articles Développement Web (PHP, Javascript, ...)
« What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against? » - Larry Wall

8

WriteStr MACRO      ;		
	MOVE.w	4,-(A7) ;
	PEA	3(PC)   ;
	MOVE.w	2,-(A7) ;
	MOVE.w	1,-(A7)  ;	
	JSR	tios:  rawStrXY ;	
	LEA	10(A7),A7 ;
	ENDM ;
LinuX Powa (:

9

[nosmile]
WriteStr MACRO      ;		declaration de la macro
	MOVE.w	4,-(A7) ;
	PEA	3(PC)   ;
	MOVE.w	2,-(A7) ;
	MOVE.w	1,-(A7)  ;	
	JSR	tios::DrawStrXY ;	
	LEA	10(A7),A7 ;
	ENDM ;


Ton double post yAro c de la merde tongue
[edit]Edité par ParadiZe le 11-03-2002 à 19:50:25[/edit]
LinuX Powa (:

10

oué, mais bon...
manque ":" et "D" grin
avatar
Tutorial C (TI-89/92+/v200) - Articles Développement Web (PHP, Javascript, ...)
« What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against? » - Larry Wall

11

comme j'ai fait un copier coller de ce que t'as marqué !Et sans faire exprès j'ai clicker Poster 2 fois en plus,et le script a yAro n'a rein vu tongue
Moi powwwwwaaaaaa plus fort que le script de yAro tongue
LinuX Powa (:

12

lol
avatar
Tutorial C (TI-89/92+/v200) - Articles Développement Web (PHP, Javascript, ...)
« What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against? » - Larry Wall

13

en fait javais bon sauf que javais mis un slash a la place dun antislash et je le voyais pas donc je me disais que y avait un autre probleme mais nan
Y a deux fesses qui sont sur la plage et l'une dit à l'autre :
"Qu'est ce qu'on fait maintenant ?"
Et l'autre lui répond :
"Ben PROUT !!!"

14

Pb Réglé...
avatar
Tutorial C (TI-89/92+/v200) - Articles Développement Web (PHP, Javascript, ...)
« What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against? » - Larry Wall

15

as, il supporte les macro maintenant ?
avatar

16

je n'ai jamais entendu dire que ce soit le cas sad
dommage... les macros, et le mode Kernel, voila les 2 gd trucs qui manquent
avatar
Tutorial C (TI-89/92+/v200) - Articles Développement Web (PHP, Javascript, ...)
« What is the sound of Perl? Is it not the sound of a wall that people have stopped banging their heads against? » - Larry Wall

17

Bah programmez en C avec CC !
C'est moins chiant que l'ASM, il supporte les macros, et rien ne vous empêche d'inclure de l'ASM dans votre source C avec #asm & #endasm top
avatar
Un site complet sur lequel vous trouverez des programmes et des jeux pour votre calculatrice TI 89 / Titanium / 92+ / Voyage 200 : www.ti-fr.com.
Quelques idées personnelles ici.