Search found 56 matches

by gebe
Thu Feb 21, 2008 5:58 am
Forum: Off Topic
Topic: Powerbasic
Replies: 152
Views: 33132

I was refering to wiping off your posts

My copy has been discarded in shame :oops:

Yes LOCK before swamping please :D

I cancell my follow up on this thread and will not see it any more anyway


gebe
by gebe
Thu Feb 21, 2008 5:16 am
Forum: Off Topic
Topic: Powerbasic
Replies: 152
Views: 33132

Why ?

Changed your mind ??.....

I did'nt


gebe
by gebe
Thu Feb 21, 2008 4:53 am
Forum: Off Topic
Topic: Powerbasic
Replies: 152
Views: 33132

I was STUPID enough to buy this one !!! :oops: :oops: :oops:
There are plenty "wrappers" for Power Basic in fact this one is the most expensive one (like its base), ergo the intense need for pimping.,,,,

I use Pure Basic (cheap wrapping paper)==>> BEST value for money 8)
and RosAsm (assembly ...
by gebe
Mon Jun 04, 2007 2:07 am
Forum: General Discussion
Topic: Another dumb-ass FASM question!
Replies: 15
Views: 6273

My mistake
by gebe
Sun Jun 03, 2007 3:33 pm
Forum: General Discussion
Topic: Another dumb-ass FASM question!
Replies: 15
Views: 6273

Trond,

The tests


;enable inline asm
;put a break point everywhere
;and show the ASM debug window
v1.l=256+255;0x1ff
v2.l=256*2+255;0x2ff
v3.l=256*3+255
Debug Hex(v1)+ " " +Hex(v2) + " "+Hex(v3)

*v1=@v1
*v2=@v2;hopefully they'll be following each other
*v3=@v3
Debug "Address v1 (*v1) : " +Hex ...
by gebe
Sun Jun 03, 2007 2:08 pm
Forum: General Discussion
Topic: Another dumb-ass FASM question!
Replies: 15
Views: 6273

Trond,
Yes ,except that you cannot do: mov eax,edi+4
The compiler objects to that.
Enjoy the rest of your Week-end.

gebe You can't do lea eax, edi+4 either. But you can do lea eax, [edi+4] and mov eax, [edi+4].

The compiler accepts it but

The result will be different !
lea eax,[edi+4] will ...
by gebe
Sun Jun 03, 2007 12:55 pm
Forum: General Discussion
Topic: Another dumb-ass FASM question!
Replies: 15
Views: 6273

Trond,
Yes ,except that you cannot do: mov eax,edi+4
The compiler objects to that.
Enjoy the rest of your Week-end.

gebe
by gebe
Sun Jun 03, 2007 12:48 pm
Forum: General Discussion
Topic: ASM and parameters
Replies: 6
Views: 1755

This post might be stupid after the real specialist has spoken.
Please treat it more as a question than anything else...

For what it is worth: (I am far ,far from beeing a specialist).
I tried the following to be able to follow up the stack easily.
I cannot stop in the debugger with the < !code ...
by gebe
Sun Jun 03, 2007 11:20 am
Forum: General Discussion
Topic: Another dumb-ass FASM question!
Replies: 15
Views: 6273

- lea versus mov :

lea edx,[edi] ;load the contents of the edi into the edx (1)
mov edx,[edi] ;load the value at edi into the edx (2)
mov edx,edi ;move the contents of the edi into the edx (3)

- (1) and (3) are equivalent.

- So what are the differences?

- (3) is faster than (1) and is ...
by gebe
Sat Jun 02, 2007 12:43 am
Forum: General Discussion
Topic: ASM forum for the English forums
Replies: 7
Views: 1863

My contribution,after (finally) :oops: "understanding"the 2 different ways of using
machine code.C type conversion ,using a buffer.


gebe :)
]
;was not tested for speed
;only an exercise
Procedure StrL(l.l,*p)
!MOV eax,dword[p.v_l]
! PUSH edi;+4 for the push
! MOV edi,dword[p.p_p+4];the pointer ...
by gebe
Fri Jun 01, 2007 7:35 pm
Forum: General Discussion
Topic: ASM forum for the English forums
Replies: 7
Views: 1863

ASM forum for the English forums

Just joined the French forum...Just for the ASM forum

Searched and I already got after 15 minutes what I've been looking for here (During one week)

Just a suggsestion to add weight to some post I 've lost sight of.

Derrick I am still working on my speeds .

I have added RosASM to my "strings ...
by gebe
Tue May 29, 2007 6:14 pm
Forum: Off Topic
Topic: Powerbasic
Replies: 152
Views: 33132

Or, you can send them a mail saying, if you reply to this email or send me any other email correspondence of any kind, you agree to give me a free license to PowerBasic and a free lifetime upgrade. hehehehe

Too dangerous to speek about any "Free"stuff ...

That could give somebody there a heart ...
by gebe
Tue May 29, 2007 4:21 am
Forum: Off Topic
Topic: Powerbasic
Replies: 152
Views: 33132

Trond wrote:
Does PowerBasic have a demo version?

NO ! You pay ...you get your demo + pay for the delivery by E-Mail
They cannot loose .

Speek about being banned.?

I banned myself.
I still get the "nice" Emails telling me how great they are.

gebe :evil:
by gebe
Sat May 05, 2007 6:12 pm
Forum: Coding Questions
Topic: Enforcing Variables Declaration
Replies: 2
Views: 817

Thanks

Many thanks net maestro.
I obviousely loooked at the wrong places.
gebe :shock:
the big eyes for the GLASSES !!!
by gebe
Sat May 05, 2007 6:25 am
Forum: Coding Questions
Topic: Enforcing Variables Declaration
Replies: 2
Views: 817

Enforcing Variables Declaration

Hi all,

I am not sure ,but I seem to remember that I saw somewhere that it is possible to enforce declaration of variables.
I can be wrong or I cannot find it anymore .
If it exists please let me know how.
If it does not ,I wish to put it on the list of requests.
I just spent a few hours looking ...