flat assembler
Message board for the users of flat assembler.
Index
> IDE Development > Wink 6.92.03 (vertical selection + compiling) Goto page Previous 1, 2, 3, 4, 5 ... 19, 20, 21 Next |
Author |
|
ouadji 10 Apr 2010, 20:33
Quote:
curious ... are you sure ? I've never had problems with version 1.69.xx. quels genres de problèmes ? je n'ai jamais rien remarqué ici. pourtant, j'ai une source de plus de 3000 lignes, aucun soucis, nickel ! curieux ça que tu aies des problèmes de ton côté avec la ver 1.69.xx (??) Winker la version 1.68 ? oui, aucun problèmes ... mais l'idée est de rester "au top" de la dernière version quoi ! Ceci dit, je pense que la version 1.68 va disparaitre, la version 1.69 va prendre sa place ... j'ai lu ça sur le forum. |
|||
10 Apr 2010, 20:33 |
|
edfed 10 Apr 2010, 21:57
the last fasm version is not the best one.
1.69.XX means it is in development, and still full of uncorrected bugs, as a proof, it doesn't compile my 13000 lines source. that's why i use 1.68_, and think i will use it a very long time. some features added in 1.69 does not correspond to the use i have of fasm, like Masm syntax support, or else... la version 1.68 peut disparaitre, je m'en fiche, j'ai la source sauvegardée et elle disparaitra pas de chez moi pour sur. puis les versions ne disparaissent pas vraiment, il y a un coin du reseau qui les contient toutes. |
|||
10 Apr 2010, 21:57 |
|
ouadji 11 Apr 2010, 17:18
Can you try to crash this version. the results of your tests are essential for me thank you. |
|||
11 Apr 2010, 17:18 |
|
edemko 12 Apr 2010, 05:56
I've tried it over 500'003 lines and it WORKS.
Leaving rev.8 :)
|
|||||||||||
12 Apr 2010, 05:56 |
|
Fanael 12 Apr 2010, 10:42
ouadji & edfed, please don't use French. This language c'est de la murder. And there are people who don't understand this at all.
|
|||
12 Apr 2010, 10:42 |
|
edfed 12 Apr 2010, 11:16
no, it is not shit (MERDE) language, please, be correct. , most words in english are pure derivations from french, and we don't say anything when you use cyrillic langauges.
|
|||
12 Apr 2010, 11:16 |
|
Fanael 12 Apr 2010, 13:30
edfed wrote: no, it is not shit language edfed wrote: and we don't say anything when you use cyrillic langauges. Okay, maybe that was bit too harsh. I can't stop you (or anyone else, for that matter) from using French (or any other language), but if you decide to do so, then please provide English translation too, when feasible. Without that, it's sometimes very hard to understand what was written. Of course, I'm by no means perfect - I wrote several post in other languages (they were German, Polish and Irish, if I recall correctly) and I didn't translate them to English. |
|||
12 Apr 2010, 13:30 |
|
revolution 12 Apr 2010, 13:43
|
|||
12 Apr 2010, 13:43 |
|
ouadji 12 Apr 2010, 14:19
relax ... French, Russian, Polish, German ... it does not matter ! the asm language is universal ! here is the most important ... which will be the first to find a bug in the use of wink4.4 ? nobody ? wink4.4 is perfect ? Last edited by ouadji on 21 Sep 2010, 20:25; edited 1 time in total |
|||
12 Apr 2010, 14:19 |
|
Tyler 29 Apr 2010, 23:27
Update(or source) for 1.69.14?
|
|||
29 Apr 2010, 23:27 |
|
ouadji 19 May 2010, 13:05
update for 1.69.14 ---> wink 4.5
(.exe + sources) Last edited by ouadji on 21 Sep 2010, 20:18; edited 1 time in total |
|||
19 May 2010, 13:05 |
|
edemko 19 May 2010, 13:21
hello, eh, i like talking, smiling, i'm smiling now, fool
this one resembles Tomasz here: http://video.google.com/videoplay?docid=-4493580573398769744# ie. association mechanism, this is serious |
|||
19 May 2010, 13:21 |
|
Tyler 19 May 2010, 21:22
ouadji: Thank you. I've been wondering how you did it. It frustrated me for weeks, until I gave up.
edemko wrote:
Sounds like you've been trying K2(still legal in US)? |
|||
19 May 2010, 21:22 |
|
ouadji 19 May 2010, 21:55
Quote:
"ResultFlag:" and dword : "bingo", "my_gate" and "bypass" ... are very important too ! |
|||
19 May 2010, 21:55 |
|
edemko 19 May 2010, 22:19
edemko
hello, eh, i like talking, smiling, i'm smiling now, fool i was meeting ouadji this one resembles Tomasz here: ... remembered Tomasz who avoids that functionality and remembered that video which told me no way think abusing him ie. association mechanism, this is serious those were my thoughts aloud as any remarks in this topic now are misplaced btw my old nickname was got in a state of a drunk man, ie. soul state, i'm a neither smoking, drinking, club-coming man, ok enough |
|||
19 May 2010, 22:19 |
|
ouadji 20 May 2010, 05:59
nothing to do with my wink 4.5 |
|||
20 May 2010, 05:59 |
|
ouadji 22 Jun 2010, 07:45
fasm/fasmw (wink 5.0 beta)
multiline/block comment "/*x*/" (with highlight/lowlight syntax for fasmw) + it displays the number of bytes out of range for : "j(e)cxz", all "loop(d)"(e,ne...), and all "jcc" forced short. Code: the number of bytes out of range --------------------------------- X86_64.INC ---------- jump_out_of_range: bts [my_gate],4 ;++ jc @F ; mov [out_of_range],eax ; @@: cmp [error_line],0 jne instruction_assembled mov eax,[current_line] mov [error_line],eax mov [error],relative_jump_out_of_range jmp instruction_assembled ;============================================= ERRORS.INC ---------- relative_jump_out_of_range: call Compute_and_Display ;++ push _relative_jump_out_of_range jmp assembler_error ;============================================= MESSAGES.INC ------------ _relative_jump_out_of_range db 'relative jump out of range ';,0 first_after db 12 dup ? ;++ ;============================================= out_of_range dd 0 my_gate dd 0 div__ db 1,10,100 Compute_and_Display: ;included inside X86_64.INC btr [my_gate],4 jnc .nothing push eax ecx edi mov eax,[out_of_range] or eax,eax jns @F not eax @@: sub eax,7Fh push eax cmp eax,1000 mov eax,">999" jnc .excess mov ecx,3 mov eax,[esp] .next_: div [div__-1+ecx] add al,30h ror eax,8 loop .next_ mov al," " .excess: mov edi,first_after stosd mov eax," byt" stosd mov eax,'e' pop ecx dec ecx jz @F mov ah,'s' @@: stosd pop edi ecx eax .nothing: retd Last edited by ouadji on 21 Sep 2010, 20:28; edited 1 time in total |
|||
22 Jun 2010, 07:45 |
|
edemko 26 Jun 2010, 16:09
\fasmw\TOOLS\LISTING.INC
compiles ok, highlights nok
|
||||||||||
26 Jun 2010, 16:09 |
|
edemko 26 Jun 2010, 16:39
informal code, why not
TG, TG, TG... somewhere behind the reality or thinking in complex TG, TG, TG... Code: ... ret 16 ;------------------ dd 4 .trims: db 9/*TAB*/,10/*LF*/,13/*CR*/,32/*SPACE*/ ;------------------ endp ... |
|||
26 Jun 2010, 16:39 |
|
Goto page Previous 1, 2, 3, 4, 5 ... 19, 20, 21 Next < Last Thread | Next Thread > |
Forum Rules:
|
Copyright © 1999-2024, Tomasz Grysztar. Also on GitHub, YouTube.
Website powered by rwasa.