Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Assembly Language > Re: Release of ...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 17 of 275 Topic 2654 of 5163
Post > Topic >>

Re: Release of RosAsm V.2.025a

by "randyhyde@[EMAIL PROTECTED] " <randyhyde@[EMAIL PROTECTED] > Sep 9, 2005 at 05:34 AM

Betov wrote:
> >
> > More than one pass, then?
>
> Well, if RosAsm Simplified Syntax is over your head,

Then the "simplification" must not be all that simple, considering Alex
is quite capable of dealing with more "complex" syntax, eh?

> i doubt
> that you could understand the explanations,

Sure.


> but, in case
> some readers would be interrested with the envolved Methods,
> here they are [Explanations supposing that the readers knows
> of what a Long of Short Jump, and Jumps Sizes Optimizations"
> - downward called "JSO" - are]:
>
> * All Assemblers i know about, that do JSO, do it by parsing
>   again and again, until all Jumps Scopes are resolved.

Yes, this is because branch displacement optimization is an NP-Complete
problem. Most assemblers don't really do true branch displacement
optimization (because compilation of a typical program would take
longer than the lifetime of the universe), so they use a greedy
algorithm instead. But the sample code I've given demonstrates some
issue why such an optimizer would take more than one pass.

>
> * RosAsm does it in one simple Computation, by analysing and
>   modifying the Tables in charge of storing the Declarations
>   and Evocations Reference.

Won't work in all cases. Period.

>
> In other words, the traditional Multi-Pass thingie, is "emulated"
> by a flow of calculations, that take almost no time.

But doesn't work for a large number of cases.

> Of course,
> to achieve such a simple computation, in an Assembler Source,
> this requires, first, that the References Tables are correctely
> implemented since day one of the Developements.

And each time you change the lengths of your jump instructions, the
references all change, which could then cause other jump instructions
to change their size, which causes the references to change, which
could cause other jumps to change their size, which...  Sorry, a
multi-phase approach is the only solution here.


> With a traditional
> Implementation, this would be, evidently, impossible to do, as a
> "second thought", and ass-holes like our famous swindler, who
> claim to be experts in SoftWare design, have of course it easier
> by stating that this is impossible to do [Therefore the attack].

No. I had no idea that you did not truly implement branch displacement
optimization. I suspected there would be bugs in your implementation,
no doubt about that, but I didn't realize it was so broken. Too bad. It
would have been nice to actually *compare* the performance of your
assembler against the likes of MASM and FASM on an equal footing (as
they do branch displacement optimization properly). Too bad, we still
can't do that.

>
> Now, the reasons why i implemented this JSO:
>
> * It has always been planed as a "Last days Job", but everything
>   was ready for implenting this, in the same way that the "Unused
>   Symbols" Feature, - That Half implemented in two days... - was
>   ready to implement since day one.

Well, I guess the "last days" have not arrived yet, because you've
still not implemented branch displacement optimization. Your
implementation strategy is akin to that of your disassembler -- you
rush into coding without really understanding the problem and you wind
up with a solution that doesn't quite work right. And announce what a
"genius" you are for solving the problem that no one else could solve.
Sadly, you don't even realize that there are problems with your
approach.


>
> * The JSO is a no use feature, in an Assembler like RosAsm, where
>   the Jumps Sizes are entirely under the control of the Programmer.

I agree here. Your branch displacement optimization doesn't work
properly. So it's of little use to a RosAsm programmer.


>
> * It came out that some Assemblers (Namely FASM) use the JSO, as
>   a promotion argument, and that the beginners cannot understand
>   why this is nothing but a _promotion_ argument, with absolutely
>   nothing real behind, but a faultive implementation choice.

Sure, having the assembler handle the tedium is nothing but a
"promotion" argument. You may as well claim that having the assembler
convert mnemonics to machine opcodes is a "promotion" argument as well,
and make all your users type in hex opcodes. :-)


>
> * A recent extension to the RosAsm Macros capability achieved to
>   a point where it became wishable, for the Macros Developements,
>   to declare _all_ of the Conditional Jumps... Long.

No, it's "wishable" to have the assembler automatically pick the right
size for you. I've been telling you for years that forcing the user to
use those stupid "local labels" (which are forced to a short
displacement) in RosAsm was a bad idea. I guess you've finally figured
out *why* I've been making this claim.

> [It also became
>   evident that the users do _not_ like to have to make use of the
>   "...If" forms to take in charge the Sizes and the Levels of
>   imbrications of the HLL Constructs... So, at this point of the
>   various Developements, it was the right time to implement the
>   JSO, instead of waiting for the end of the Developements.

You've still got work to do, I'm afraid.


>
> * The way i choose to implement it, at a practical point of view
>   (for the user), was to make it as heavy and as noisy as possible,
>   as long as this is, first, a "Propaganda Argument".

And what have you been calling this?  "Chest-thumping?"

> I could have
>   made it silent, but i choosed to make it _visible_, through one
>   another Menu Item, that runs the compilation once, if the PE is
>   ready to Run, and _twice_, if the PE is not ready to run, in
>   order to save me from having any Error Case to implement in the
>   JSO Computations. Nevertheless, all of this, _is_ One Pass, and
>   the two compilations (with / without JSO) is about the same.

Uh, if they've got to run it a second time, that's a second pass. The
fact that you make the user manually do the second pass doesn't change
that fact.

>
> Now, the Method.
>
> When Encoding with the JSO wanted, i declare a Table of the
> same Size as the Encoded Code, where each Long Jump is "Flaged",
> to keep track of each possible occurence Location.
>
> Then, for the JSO Computation, i scan this table and keep only
> track of the negative and positive Displacements that could be
> made Short instead of Long.
>
> At that point, making a Long Jump Short is just a matter of
> overwriting and compacting the Declarations and Evocations
> Tables, and of compacting the Code Section. Quite trivial,
> but, as said above, this requires an implementation of the
> Assembler that is done since day one in a clever enough manner,
> so that 1) such Table could pre-exist and 2) could assume the
> manipulations.

Nothing amazingly clever about this. But it won't work without multiple
p***** over the code and table in question. And don't forget that
smaller jump instructions can change the size of *other* instructions,
too. E.g.,

add eax, (offset SomeLabel) - (offset SomeLabel2)

I'd be willing to bet that you don't even sup****t this facility in
RosAsm (as an assembler like MASM does), so maybe you wouldn't even be
able to optimize an instruction like this based on branch instruction
sizes. But other assemblers do.

>
> Notice that, as far as i can know, this is one more innovation
> coming with RosAsm, as i have never seen any Assembler doing
> the JSO that way,

No, it's one more example of a fundamental design flaw in your product.

> and that some ass-holes around said that
> this was impossible to do,

No doubt your scheme works for lots of simple examples; just like your
disassembler. But "theory" or otherwise, it's not going to produce the
shortest possible code in all cases. Now granted, *no* assembler
guarantees optimal code (it's too computationally intensive). But I'd
bet that assemblers like MASM and TASM produce *far* better code in
many non-trivial cases than does RosAsm.

> because the pretty Theorician
> had _proven_ that it was impossible.

Not impossible. Intractible.

> These ass-holes, just
> miss the point that the key of Assembly is the Strategy
> Optimization and that inventivity is way over any scolastic
> pedantism.

And the hacker/hobbyist assembler developer still doesn't realize why
his branch displacement optimization is inferior to other assemblers.
Cheers,
Randy Hyde
 




 275 Posts in Topic:
Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-05 13:11:04 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-08 21:48:32 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-08 21:52:44 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 08:36:04 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-09-09 08:49:00 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 09:15:25 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-09-09 09:41:25 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 10:24:00 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-09-09 12:16:42 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 13:06:38 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-09-09 13:32:00 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 14:32:55 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-09-09 16:34:44 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 17:15:24 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-09-09 17:51:08 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 18:58:33 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-09 05:34:09 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 13:13:45 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-09 05:39:12 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 15:03:25 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-09-09 15:18:18 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 15:53:33 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-09-09 16:27:18 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 16:48:38 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-09-09 17:08:16 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-09 17:29:28 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-09-09 18:13:19 
Re: Release of RosAsm V.2.025a
"sevagK" <ka  2005-09-09 13:51:20 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-10 08:11:21 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-11 07:12:53 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-11 16:02:17 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-11 11:10:08 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-11 18:25:29 
Re: Release of RosAsm V.2.025a
"anonymous" <  2005-09-11 23:35:08 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-11 11:23:11 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-11 18:30:14 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-12 05:29:09 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-12 13:07:51 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-09-12 16:11:02 
Re: Release of RosAsm V.2.025a
"anonymous" <  2005-09-12 23:45:34 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-13 08:30:20 
Re: Release of RosAsm V.2.025a
"Annie" <me@  2005-09-12 21:44:36 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-12 16:21:42 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-12 16:28:53 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-16 19:43:11 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-17 08:42:33 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-18 07:55:26 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-18 15:15:09 
Re: Release of RosAsm V.2.025a
"Richard Cooper"  2005-09-18 17:41:24 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-18 17:52:45 
Re: Release of RosAsm V.2.025a
"Richard Cooper"  2005-09-18 19:15:38 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-18 20:14:02 
Re: Release of RosAsm V.2.025a
"Annie" <me@  2005-09-19 04:26:57 
Re: Release of RosAsm V.2.025a
"Richard Cooper"  2005-09-19 05:49:38 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-19 09:56:48 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-09-19 13:50:28 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-19 12:09:43 
Re: Release of RosAsm V.2.025a
"Richard Cooper"  2005-09-19 13:47:29 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-19 14:06:46 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-19 20:36:03 
Re: Release of RosAsm V.2.025a
"Richard Cooper"  2005-09-20 10:32:00 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-20 11:09:39 
Re: Release of RosAsm V.2.025a
"Richard Cooper"  2005-09-20 12:45:08 
Re: Release of RosAsm V.2.025a
pH <high@[EMAIL PROTEC  2005-09-20 22:02:39 
Re: Release of RosAsm V.2.025a
Frank Kotler <fbkotler  2005-09-20 09:55:16 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-20 14:35:41 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-09-20 13:23:22 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-20 13:48:17 
Re: Release of RosAsm V.2.025a
Bertrand Augereau <ber  2005-09-20 16:07:47 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-20 15:56:08 
Re: Release of RosAsm V.2.025a
"¬a\\/b" <al  2005-09-23 05:22:21 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-19 20:49:27 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-20 08:35:16 
Re: Release of RosAsm V.2.025a
Bertrand Augereau <ber  2005-09-20 18:05:33 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-20 09:06:50 
Re: Release of RosAsm V.2.025a
Bertrand Augereau <ber  2005-09-20 18:11:17 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-20 16:33:45 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-20 10:35:06 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-21 08:52:04 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-21 08:53:58 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-20 10:41:54 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-21 08:44:44 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-20 11:03:07 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-20 12:37:05 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-20 12:48:10 
RosAsm and Libraries, again
"randyhyde@[EMAIL PR  2005-09-20 12:48:07 
Re: RosAsm and Libraries, again
Betov <betov@[EMAIL PR  2005-09-21 08:36:43 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-20 12:54:38 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-21 09:11:12 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-21 08:31:10 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-21 08:32:19 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-22 02:39:00 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-21 08:36:01 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-22 02:40:15 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-21 08:38:40 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-22 02:43:51 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-09-21 11:33:16 
Re: Release of RosAsm V.2.025a
"Jim Carlock" &  2005-09-22 04:53:42 
Re: Release of RosAsm V.2.025a
Bertrand Augereau <ber  2005-09-22 09:45:34 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-09-22 10:51:35 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-22 09:35:14 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-30 16:34:38 
Re: Theoretical Computer Science and Disassemblers
"¬a\\/b" <al  2005-10-01 07:44:28 
Re: Theoretical Computer Science and Disassemblers
"Guga" <maur  2005-10-01 09:14:38 
Re: Theoretical Computer Science and Disassemblers
"T.M. Sommers"   2005-10-01 19:01:12 
Re: Theoretical Computer Science and Disassemblers
Betov <betov@[EMAIL PR  2005-10-01 19:43:11 
Re: Theoretical Computer Science and Disassemblers
"Jim Carlock" &  2005-10-01 21:13:48 
Re: Theoretical Computer Science and Disassemblers
"T.M. Sommers"   2005-10-03 03:24:30 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-01 10:43:29 
Re: Theoretical Computer Science and Disassemblers
Betov <betov@[EMAIL PR  2005-10-01 19:45:37 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-04 08:00:20 
Re: Theoretical Computer Science and Disassemblers
"Evenbit" <n  2005-10-04 12:12:49 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-04 14:54:36 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-04 17:28:58 
Re: Theoretical Computer Science and Disassemblers
"Guga" <maur  2005-10-01 09:14:38 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-01 10:43:29 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-24 15:24:28 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-25 07:54:27 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-24 15:29:29 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-25 07:48:04 
Re: Release of RosAsm V.2.025a
Phil Carmody <thefatph  2005-09-25 10:42:51 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-09-25 11:40:22 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-25 10:05:38 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-09-25 14:22:05 
Re: Release of RosAsm V.2.025a
Herbert Kleebauer <kle  2005-09-26 00:08:38 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-09-29 06:26:45 
Re: Release of RosAsm V.2.025a
Herbert Kleebauer <kle  2005-09-29 13:19:33 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 00:21:16 
Re: Release of RosAsm V.2.025a
Herbert Kleebauer <kle  2005-10-03 13:37:26 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-10-03 14:25:21 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 00:21:16 
Re: Release of RosAsm V.2.025a
Phil Carmody <thefatph  2005-09-25 17:08:58 
Re: Release of RosAsm V.2.025a
Herbert Kleebauer <kle  2005-09-26 00:08:12 
Re: Theoretical Computer Science and Disassemblers
"Guga" <maur  2005-10-01 13:36:29 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-01 15:32:18 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-01 21:35:08 
Re: Release of RosAsm V.2.025a
Phil Carmody <thefatph  2005-10-09 22:35:49 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-09-29 05:37:01 
Re: Release of RosAsm V.2.025a
Herbert Kleebauer <kle  2005-09-29 13:19:30 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:21:23 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:21:23 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-24 15:31:26 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-09-24 20:00:26 
Re: Release of RosAsm V.2.025a
Phil Carmody <thefatph  2005-09-25 10:53:01 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-09-25 10:50:44 
Disassembly
"randyhyde@[EMAIL PR  2005-09-25 14:27:56 
Re: Disassembly
Betov <betov@[EMAIL PR  2005-09-26 07:41:03 
RosAsm Disassembler is a Toy.
"randyhyde@[EMAIL PR  2005-09-25 14:45:44 
Re: RosAsm Disassembler is a Toy.
Betov <betov@[EMAIL PR  2005-09-26 07:37:57 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-25 14:48:07 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-25 14:52:36 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-27 09:44:49 
Re: Theoretical Computer Science and Disassemblers
"Evenbit" <n  2005-10-06 05:01:34 
Re: RosAsm Disassembler is a Toy.
"randyhyde@[EMAIL PR  2005-09-27 09:45:32 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-09-27 14:32:28 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-02 22:18:28 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-28 08:53:25 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-09-28 13:22:55 
Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-28 14:13:31 
Re: Theoretical Computer Science and Disassemblers
"Jim Carlock" &  2005-09-29 01:13:44 
Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-29 14:17:12 
Re: Theoretical Bullshits and Disassemblers
Bertrand Augereau <ber  2005-09-29 16:24:20 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-29 14:50:30 
Re: Theoretical Bullshits and Disassemblers
Bertrand Augereau <ber  2005-09-29 17:03:02 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-29 15:32:17 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-01 08:26:33 
Re: Theoretical Computer Science and Disassemblers
"mensanator@[EMAIL P  2005-09-28 18:42:43 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-09-28 19:20:17 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-28 19:27:09 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-28 20:00:28 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-09-28 21:57:01 
Re: Theoretical Computer Science and Disassemblers
"wolfgang kern"  2005-09-29 10:18:13 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-09-28 22:27:37 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-29 11:00:50 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-29 11:04:45 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-29 11:13:04 
Re: Theoretical Computer Science and Disassemblers
"¬a\\/b" <al  2005-09-30 07:29:49 
Re: Theoretical Computer Science and Disassemblers
"wolfgang kern"  2005-09-30 19:32:17 
Re: Theoretical Computer Science and Disassemblers
"¬a\\/b" <al  2005-09-30 07:29:49 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-29 11:17:06 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-09-29 23:53:25 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:21:24 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-10-03 12:36:21 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:21:24 
Re: Theoretical Bullshits and Disassemblers
"randyhyde@[EMAIL PR  2005-09-29 11:26:39 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-29 19:02:04 
Re: Theoretical Bullshits and Disassemblers
"randyhyde@[EMAIL PR  2005-09-29 16:37:07 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-30 08:20:56 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-30 08:20:56 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-29 16:38:29 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-29 17:26:41 
Re: Theoretical Computer Science and Disassemblers
"wolfgang kern"  2005-09-30 19:21:23 
Re: Theoretical Bullshits and Disassemblers
jan.deinhard@[EMAIL PROTE  2005-09-30 03:07:47 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-30 12:46:10 
Re: Theoretical Bullshits and Disassemblers
Timo Schneider <timo.s  2005-09-30 13:45:39 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-30 14:45:38 
Re: Theoretical Bullshits and Disassemblers
Timo Schneider <timo.s  2005-09-30 13:45:39 
Re: Theoretical Bullshits and Disassemblers
"Paul Dunn" <  2005-09-30 12:47:13 
Re: Theoretical Bullshits and Disassemblers
"Paul Dunn" <  2005-09-30 23:02:50 
Re: Theoretical Bullshits and Disassemblers
Woody <woody.6031769.n  2005-10-01 06:45:16 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-09-30 12:46:10 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-30 16:40:45 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-10-01 10:01:31 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-10-01 21:48:03 
Re: Release of RosAsm V.2.025a
"T.M. Sommers"   2005-10-01 20:42:47 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-10-02 19:03:42 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-10-02 20:16:14 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-10-03 12:08:30 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-10-04 17:24:57 
Re: Release of RosAsm V.2.025a
"T.M. Sommers"   2005-10-03 03:24:29 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-10-02 20:16:14 
Re: Release of RosAsm V.2.025a
"T.M. Sommers"   2005-10-01 20:36:18 
Re: Release of RosAsm V.2.025a
"Jim Carlock" &  2005-10-01 21:15:00 
Re: Release of RosAsm V.2.025a
"T.M. Sommers"   2005-10-03 03:24:26 
Re: Release of RosAsm V.2.025a
"Jim Carlock" &  2005-10-01 21:15:00 
Re: Theoretical Computer Science and Disassemblers
"Guga" <maur  2005-09-30 21:24:36 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-09-30 22:16:10 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-09-30 22:42:17 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:21:26 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:21:26 
Re: Theoretical Bullshits and Disassemblers
"Charles A. Crayne&q  2005-09-30 22:49:07 
Re: Theoretical Bullshits and Disassemblers
Betov <betov@[EMAIL PR  2005-10-01 07:36:41 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-10-01 10:52:29 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-10-01 19:46:52 
Re: Release of RosAsm V.2.025a
"Evenbit" <n  2005-10-01 14:37:44 
Re: Release of RosAsm V.2.025a
"Evenbit" <n  2005-10-01 14:48:29 
Re: Release of RosAsm V.2.025a
"T.M. Sommers"   2005-10-03 03:24:28 
Re: Release of RosAsm V.2.025a
"Evenbit" <n  2005-10-01 14:59:23 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-10-02 19:41:42 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-10-01 15:15:53 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-10-01 17:53:02 
Re: Release of RosAsm V.2.025a
Alex McDonald <alex_mc  2005-10-02 09:27:02 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:56:27 
Re: Release of RosAsm V.2.025a
"wolfgang kern"  2005-10-03 11:44:46 
Re: Release of RosAsm V.2.025a
"Beth" <Beth  2005-10-03 01:56:27 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-01 21:57:15 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-10-02 17:34:27 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-02 19:22:54 
Re: Theoretical Computer Science and Disassemblers
Alex McDonald <alex_mc  2005-10-03 08:13:03 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-10-02 20:00:41 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-02 22:10:41 
Re: Theoretical Computer Science and Disassemblers
"randyhyde@[EMAIL PR  2005-10-02 22:13:17 
Re: Theoretical Computer Science and Disassemblers
Torkel Franzen <torkel  2005-10-03 11:16:45 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-10-02 23:01:44 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-10-03 08:48:29 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-10-03 09:19:27 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-10-03 11:52:49 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-10-03 20:42:47 
Re: Release of RosAsm V.2.025a
pH <high@[EMAIL PROTEC  2005-10-04 04:21:45 
Re: Release of RosAsm V.2.025a
"Paul Dunn" <  2005-10-04 13:24:23 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-10-03 14:51:47 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-03 21:24:46 
Re: Theoretical Computer Science and Disassemblers
Alex McDonald <alex_mc  2005-10-04 13:02:09 
Re: Theoretical Computer Science and Disassemblers
"Paul Dunn" <  2005-10-04 13:26:54 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-03 21:46:24 
Re: Theoretical Computer Science and Disassemblers
Torkel Franzen <torkel  2005-10-04 06:56:45 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-03 21:54:17 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-10-03 22:04:38 
Re: Release of RosAsm V.2.025a
"Charles A. Crayne&q  2005-10-03 22:07:54 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-03 22:25:23 
Re: Theoretical Computer Science and Disassemblers
Torkel Franzen <torkel  2005-10-04 07:45:22 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-10-04 07:47:04 
Re: Release of RosAsm V.2.025a
"Annie" <me@  2005-10-05 03:08:19 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-10-04 07:56:40 
Re: Release of RosAsm V.2.025a
Herbert Kleebauer <kle  2005-10-04 17:02:08 
Re: Theoretical Computer Science and Disassemblers
"Charles A. Crayne&q  2005-10-04 11:15:50 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-18 12:34:08 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-18 13:26:09 
Re: Release of RosAsm V.2.025a
"Richard Cooper"  2005-09-19 00:29:55 
Re: Release of RosAsm V.2.025a
"Guga" <maur  2005-09-18 13:54:27 
Re: Release of RosAsm V.2.025a
Betov <betov@[EMAIL PR  2005-09-19 09:48:04 
Re: Release of RosAsm V.2.025a
"sevagK" <ka  2005-09-18 14:51:43 
Discussion of different assemblers
"randyhyde@[EMAIL PR  2005-09-18 17:35:50 
Re: Discussion of different assemblers
Betov <betov@[EMAIL PR  2005-09-19 09:41:47 
Re: Release of RosAsm V.2.025a
"randyhyde@[EMAIL PR  2005-09-18 17:41:16 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sun Oct 12 22:38:04 CDT 2008.