Deutsch   English   Français   Italiano  
<86fcd885-9ac1-4ec4-bd47-76f485dc9aean@googlegroups.com>

View for Bookmarking (what is this?)
Look up another Usenet article

X-Received: by 2002:a05:6214:a64:b0:635:e204:35dc with SMTP id ef4-20020a0562140a6400b00635e20435dcmr6661qvb.9.1689282589706;
        Thu, 13 Jul 2023 14:09:49 -0700 (PDT)
X-Received: by 2002:a05:6808:30a4:b0:3a3:89a2:50a5 with SMTP id
 bl36-20020a05680830a400b003a389a250a5mr3489102oib.10.1689282589446; Thu, 13
 Jul 2023 14:09:49 -0700 (PDT)
Path: ...!3.us.feeder.erje.net!1.us.feeder.erje.net!feeder.erje.net!usenet.blueworldhosting.com!diablo1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: fr.comp.sys.atari
Date: Thu, 13 Jul 2023 14:09:48 -0700 (PDT)
In-Reply-To: <b46fa5d6-91a1-433a-bc82-30d5d322b6fen@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=90.125.209.83; posting-account=HPBY0woAAADIQTaxOOgZHpdgKlVwPm6B
NNTP-Posting-Host: 90.125.209.83
References: <64acf3d3$0$7627$426a34cc@news.free.fr> <u8p7u9$1nkb0$1@paganini.bofh.team>
 <7ef65de5-903f-448b-9718-30d5634f415fn@googlegroups.com> <u8pb5g$1ntki$1@paganini.bofh.team>
 <7fa61092-e801-4bf5-bf23-b0e65f7ae0ebn@googlegroups.com> <u8pbs5$1nvj6$1@paganini.bofh.team>
 <03d2da3d-1c8f-422d-b709-7289916a48e1n@googlegroups.com> <u8pcrq$1o2hc$1@paganini.bofh.team>
 <2356d3d5-4e0f-476d-bcaf-89a0278c08c3n@googlegroups.com> <ea656388-7667-4099-b4c6-fbd28c5dc4f8n@googlegroups.com>
 <1cJ8bgptzNolrix0HjnoFwu7qA8@jntp> <b46fa5d6-91a1-433a-bc82-30d5d322b6fen@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <86fcd885-9ac1-4ec4-bd47-76f485dc9aean@googlegroups.com>
Subject: Re: Nouvelle Page
From: Arachide <moulinaie@gmail.com>
Injection-Date: Thu, 13 Jul 2023 21:09:49 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 2970
Bytes: 3224
Lines: 50

Le jeudi 13 juillet 2023 =C3=A0 22:48:29 UTC+2, Francois LE COAT a =C3=A9cr=
it=C2=A0:

> Je d=C3=A9mentis tes =C3=A9lucubrations ... La singularit=C3=A9 du sin(x)=
/x en z=C3=A9ro=20
> faisait planter Win95, mais pas du tout l'ATARI de la m=C3=AAme =C3=A9poq=
ue.

Je viens de comprendre pourquoi j'avais un second fichier source qui calcul=
ait sin(0)/0 !!!! =C3=87a me revient. Tu en avais d=C3=A9j=C3=A0 parl=C3=A9=
 =C3=A0 l'=C3=A9poque.
Ben d=C3=A9sol=C3=A9, =C3=A7a ne plante pas plus...
=C3=87a refuse obstin=C3=A9ment de planter.
=20
Guillaume.

Voici le source:
..386
..model flat,stdcall
option casemap:none
include \partage\masm32\include\windows.inc
include \partage\masm32\include\kernel32.inc
includelib \partage\masm32\lib\kernel32.lib
include \partage\masm32\include\user32.inc
includelib \partage\masm32\lib\user32.lib

..data
MsgBoxCaption  db "Plantons WIndows",0
MsgBoxText1       db "Avant la division...",0
MsgBoxText2       db "Apr=C3=A8s la division...",0

mon_x REAL8 0.0
mon_y REAL8 ?

..code
start:
invoke MessageBox, NULL, addr MsgBoxText1, addr MsgBoxCaption, MB_OK

finit

fld mon_x
fsin
fld mon_x
fdiv
fstp mon_y

invoke MessageBox, NULL, addr MsgBoxText2, addr MsgBoxCaption, MB_OK

invoke ExitProcess, NULL
end start=20