Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > fr.comp.sys.atari > #11553
| From | Francois LE COAT <lecoat@atari.org> |
|---|---|
| Newsgroups | fr.comp.sys.atari |
| Subject | Re: [HS] TOS chez Atari (plantons Windows?) |
| Date | 2015-09-02 19:25 +0200 |
| Organization | Aioe.org NNTP Server |
| Message-ID | <ms7ben$6u2$1@speranza.aioe.org> (permalink) |
| References | (9 earlier) <ms4pqs$c9q$1@speranza.aioe.org> <ms4qgj$dqc$1@speranza.aioe.org> <ms4r0r$f54$1@speranza.aioe.org> <ms4rhk$glt$1@speranza.aioe.org> <ms4srl$jpq$1@speranza.aioe.org> |
Salut,
Arachide écrit :
> Je m'autorise à réagir à ce que tu écris ici.
>
> Tu affirmes que windows est plantogène.
> tu affirmes que 0/0 amène à un plantage système.
>
> Je te démontre que NON.
>
> Ca n'a rien à voir avec ta discussion sur Aranym.
>
> J'ai simplement pris ce que tu écris et j'y réagis car c'est, comme à
> ton habitude, une série de lieux communs débiles:
> TOS > Windows
> TOS bien
> Windows pas bien
>
> Tiens, puisque tu veux des flottants, j'ai changé le petit bout
> d'assembleur avec ça:
>
> mon_x REAL8 0.0
> mon_y REAL8 ?
>
> finit ; initialise le FPU
>
> fld mon_x ; charge x sur la pile (ST0=0)
> fsin ; calcule le sinus (ST0 = sin(0))
> fld mon_x ; charge x sur la pile (ST1=0)
> fdiv ; divise ST0/ST1 (sin(0)/0)
> fstp mon_y ; récupère le résultat dans y
>
> Eh ben, le programme ne plante PLUS du tout dis donc !
> Le CPU ne considère pas que c'est une exception, dans mon_y on reçoit le
> codage de NAN (not a number) et on n'arrive jamais à l'écran bleu.
J'ai pas eu besoin de l'assembleur x86, pour écrire un programme :
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <tos.h>
#include <aes.h>
void main(void);
void main()
{
int t;
double x;
char alert[256];
appl_init();
for(t=5;t>0;t--)
{
x=(double)t/100.0;
sprintf(alert,"[ sin(%lf)/%lf = ][ %lf ]",x,x,sin(x)/x);
form_alert(1,alert);
}
/* There's a singularity for t=0 */
do
{
x=(double)t/100.0;
sprintf(alert,"[ sin(%lf)/%lf = ][ %lf ]",x,x,sin(x)/x);
form_alert(1,alert);
} while(--t>=-5);
appl_exit();
exit(0);
}
qui retourne NaN pour t=0, et qui ne plante pas sur ATARI. La raison
est que ce programme est trop simple pour planter. Tu ne le comprends
pas. Ta démonstration ne prouve simplement que tu ne sais pas planter
Win98. C'est pourtant à la portée de n'importe quel non-initié.
ATARIstiquement vôtre =)
--
François LE COAT
Auteur de Eurêka 2.12 (Grapheur 2D, Modeleur 3D)
http://eureka.atari.org/
Back to fr.comp.sys.atari | Previous | Next — Previous in thread | Next in thread | Find similar
[HS] TOS chez Atari OL <o.l@lutece.net> - 2015-08-22 12:43 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-23 20:20 +0200
Re: [HS] TOS chez Atari Djamé <djame@biensur.com> - 2015-08-26 01:46 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-28 00:00 +0200
Re: [HS] TOS chez Atari Djamé <djame@biensur.com> - 2015-08-29 14:57 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-29 15:52 +0200
Re: [HS] TOS chez Atari pascal WIJSBROEK <pascal.wijsbroek@gmail.com> - 2015-08-29 08:01 -0700
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-29 17:30 +0200
Re: [HS] TOS chez Atari pascal WIJSBROEK <pascal.wijsbroek@gmail.com> - 2015-08-29 21:15 -0700
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-30 22:07 +0200
Re: [HS] TOS chez Atari pascal WIJSBROEK <pascal.wijsbroek@gmail.com> - 2015-08-31 02:02 -0700
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-31 18:16 +0200
Re: [HS] TOS chez Atari Tintin <tintin@groumpf.org> - 2015-08-31 19:38 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-31 21:04 +0200
Re: [HS] TOS chez Atari Tintin <tintin@groumpf.org> - 2015-08-31 22:06 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-31 22:28 +0200
Re: [HS] TOS chez Atari Tintin <tintin@groumpf.org> - 2015-08-31 22:34 +0200
Re: [HS] TOS chez Atari pehache <pehache.7@gmail.com> - 2015-08-31 23:00 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-31 23:42 +0200
Re: [HS] TOS chez Atari pehache <pehache.7@gmail.com> - 2015-09-01 00:25 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-01 01:00 +0200
Re: [HS] TOS chez Atari OL <o.l@lutece.net> - 2015-09-01 07:24 +0200
Re: [HS] TOS chez Atari OL <o.l@lutece.net> - 2015-09-06 10:40 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-06 13:50 +0200
Re: [HS] TOS chez Atari OL <o.l@lutece.net> - 2015-09-06 19:17 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-06 19:46 +0200
Re: [HS] TOS chez Atari OL <o.l@lutece.net> - 2015-09-06 19:53 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-06 21:06 +0200
Re: [HS] TOS chez Atari Arachide <houten.van@orange.fr> - 2015-09-01 09:22 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-01 18:18 +0200
Re: [HS] TOS chez Atari Arachide <houten.van@orange.fr> - 2015-09-01 18:20 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-01 18:35 +0200
Re: [HS] TOS chez Atari Jerome Lambert <jerome@jlambert.be> - 2015-09-01 19:58 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-01 20:10 +0200
Re: [HS] TOS chez Atari Arachide <houten.van@orange.fr> - 2015-09-01 20:13 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-01 20:30 +0200
Re: [HS] TOS chez Atari Jerome Lambert <jerome@jlambert.be> - 2015-09-01 20:29 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-01 20:51 +0200
Re: [HS] TOS chez Atari Arachide <houten.van@orange.fr> - 2015-09-01 21:05 +0200
Re: [HS] TOS chez Atari Jerome Lambert <jerome@jlambert.be> - 2015-09-01 22:25 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-02 00:53 +0200
Re: [HS] TOS chez Atari Jerome Lambert <jerome@jlambert.be> - 2015-09-02 01:28 +0200
Re: [HS] TOS chez Atari pehache <pehache.7@gmail.com> - 2015-09-01 22:11 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-02 18:45 +0200
Re: [HS] TOS chez Atari Arachide <houten.van@orange.fr> - 2015-09-02 19:20 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-09-02 19:33 +0200
Re: [HS] TOS chez Atari pehache <pehache.7@gmail.com> - 2015-09-03 00:51 +0200
Re: [HS] TOS chez Atari pehache <pehache.7@gmail.com> - 2015-09-03 00:43 +0200
Re: [HS] TOS chez Atari Tonton Th <tTh@nowhere.invalid> - 2015-09-02 15:31 +0000
Re: [HS] TOS chez Atari OL <o.l@lutece.net> - 2015-08-31 22:54 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 09:37 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 18:08 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 19:05 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 19:43 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 19:51 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 20:05 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 20:12 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 20:24 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 20:32 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 20:41 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 21:04 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Richard Hachel <r.hachel@biscuit.f> - 2015-09-01 19:06 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 21:13 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 21:15 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 21:25 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 21:29 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 21:46 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-01 22:03 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 22:19 +0200
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-01 22:46 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 23:04 +0200
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-01 23:22 +0200
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-01 23:13 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-01 22:28 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-01 23:38 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-02 09:15 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 19:08 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-02 21:54 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 22:16 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tintin <tintin@groumpf.org> - 2015-09-01 22:10 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 18:53 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 19:25 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-02 19:34 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 19:55 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-02 20:03 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 20:12 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-02 20:22 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 20:42 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-02 20:53 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 21:09 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-02 21:47 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 22:00 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-02 22:15 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 22:32 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Jerome Lambert <jerome@jlambert.be> - 2015-09-02 23:10 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 18:25 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-03 19:10 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 19:40 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-03 19:51 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 20:14 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-03 20:19 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 20:57 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-05 14:26 +0000
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 22:08 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 22:46 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Jerome Lambert <jerome@jlambert.be> - 2015-09-03 23:17 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 23:30 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-05 14:34 +0000
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 23:47 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 23:57 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-04 00:07 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-04 00:15 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-04 00:29 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-05 14:32 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-05 13:21 +0000
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-03 22:18 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 23:18 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 23:54 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-04 00:02 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-04 00:14 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-04 00:28 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-04 07:28 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-04 18:01 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-06 09:17 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Jerome Lambert <jerome@jlambert.be> - 2015-09-06 11:50 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 13:01 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-06 17:54 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 19:25 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-06 19:37 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 20:05 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-06 20:20 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 20:38 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-06 21:00 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 21:32 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-08 22:36 +0000
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-06 21:01 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 21:14 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-06 21:39 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 21:53 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-06 22:01 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 22:12 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-06 22:49 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-06 23:11 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pascal WIJSBROEK <pascal.wijsbroek@gmail.com> - 2015-09-06 13:32 -0700
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-04 08:28 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-05 12:35 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-05 12:33 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-05 19:09 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-05 21:58 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-04 16:43 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-04 18:50 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-04 17:15 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-04 19:56 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-05 10:19 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-05 11:41 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pascal WIJSBROEK <pascal.wijsbroek@gmail.com> - 2015-09-04 00:44 -0700
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-04 07:52 +0000
Re: [HS] TOS chez Atari (plantons Windows?) "Daroou" <daroouAR08A5EfreeP01NTfr> - 2015-09-03 00:11 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 18:03 +0200
Re: [HS] TOS chez Atari (plantons Windows?) "Daroou" <daroouAR08A5EfreeP01NTfr> - 2015-09-03 18:40 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-03 19:11 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 08:28 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 12:12 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 18:16 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 17:39 +0000
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 22:05 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-03 19:12 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 12:21 +0000
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-03 21:51 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 22:12 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 22:50 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 22:22 +0200
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-03 23:22 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-03 23:43 +0200
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-04 00:23 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Simon <no@no.no> - 2015-09-04 20:48 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Tonton Th <tTh@nowhere.invalid> - 2015-09-04 13:20 +0000
Re: [HS] TOS chez Atari (plantons Windows?) Arachide <houten.van@orange.fr> - 2015-09-03 19:26 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 08:18 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 08:17 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Simon <no@no.no> - 2015-09-02 21:23 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 21:28 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 08:29 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 08:02 +0200
Re: [HS] TOS chez Atari (plantons Windows?) OL <o.l@lutece.net> - 2015-09-01 22:37 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-01 22:27 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 07:51 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-01 22:19 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 19:04 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 08:29 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-01 22:16 +0200
Re: [HS] TOS chez Atari (plantons Windows?) Francois LE COAT <lecoat@atari.org> - 2015-09-02 19:00 +0200
Re: [HS] TOS chez Atari (plantons Windows?) pehache <pehache.7@gmail.com> - 2015-09-03 01:00 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Arachide <houten.van@orange.fr> - 2015-09-06 23:05 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Arachide <houten.van@orange.fr> - 2015-09-06 23:26 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Francois LE COAT <lecoat@atari.org> - 2015-09-06 23:32 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Arachide <houten.van@orange.fr> - 2015-09-07 11:51 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Arachide <houten.van@orange.fr> - 2015-09-07 20:06 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) pehache <pehache.7@gmail.com> - 2015-09-07 21:09 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Arachide <houten.van@orange.fr> - 2015-09-07 21:26 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Francois LE COAT <lecoat@atari.org> - 2015-09-08 21:35 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) Tonton Th <tTh@nowhere.invalid> - 2015-09-08 22:23 +0000
Re: [HS] TOS chez Atari (riposte en mail privé) Arachide <houten.van@orange.fr> - 2015-09-09 08:02 +0200
Re: [HS] TOS chez Atari (riposte en mail privé) pascal WIJSBROEK <pascal.wijsbroek@gmail.com> - 2015-09-08 23:05 -0700
Re: [HS] TOS chez Atari (riposte en mail privé) pehache <pehache.7@gmail.com> - 2015-09-09 06:40 +0000
Re: [HS] TOS chez Atari OL <o.l@lutece.net> - 2015-08-28 17:23 +0200
Re: [HS] TOS chez Atari Francois LE COAT <lecoat@atari.org> - 2015-08-28 22:55 +0200
Re: [HS] TOS chez Atari OL <o.l@lutece.net> - 2015-08-31 23:27 +0200
csiph-web