quote:
Originally posted by matty
This is the actual thread...
Help me test script (Ctrl-W Closer)
Ah, thanks... added.
quote:
Originally posted by segosa
CookieRevised: I have no useful input to add to this thread, so all I can say is that I really like this. If code could turn me on, this would.
thanks... I think
as long as you don't cum....
quote:
Originally posted by SmokingCookie
I see what y'all mean, but I was actually wondering what the effect of the ASM stuff is on the "Hello world!" string. I mean: the input is the same as the output?
Nope, the output is completely different than the input. See my
previous post where I explain what the effect is using your "hello world" example.
quote:
Originally posted by SmokingCookie
And I think this ASM is quite a bit too abstract to make up yourself, right?
Although I got help from wtbw, there is nothing magic about it. It is just a matter of knowing your commands. (eg: how to write
x++, or
x=5 in asm). If you wouldn't know JScript, then any JScript code would be "abstract" to you too, won't it? So, that goes for any programming language code, including asm.
The only difference is that asm is
as low as you can go, it is (almost) pure machine code. So it doesn't have fancy (and human readable) commands which actually automatically do 1000 other things under the hood for you. You need to write those 1000 commands yourself in that case, using a set of simple and basic (cryptic, but still understandable in a way) commands.
eg:
mov ax, [cx] means
move (or rather copy) the value found in the address pointed to by the register CX, to the register AX.
inc ax means
increment the value in AX and store that new value again in AX
If you wanna know more about those mnemonics I suggest to Google assembler language and such things. Plenty info around, but not for the faint-hearted (or old people like me who cba anymore to learn it properly
).
quote:
Originally posted by SmokingCookie
@matty: I don't have access to the thread you're pointing to.
That thread is in beta testing forum.
See
OP for a link to matty's implementation of that code in the public forum.