Search found 1771 matches

by SARG
Feb 11, 2009 22:49
Forum: Community Discussion
Topic: Making the GNU debugger more useful (for FreeBASIC users)
Replies: 11
Views: 3690

Ok no problem
same file here http://freefile.kristopherw.us/uploads/ ... bugger.zip

Thanks....
by SARG
Feb 11, 2009 20:12
Forum: Community Discussion
Topic: Making the GNU debugger more useful (for FreeBASIC users)
Replies: 11
Views: 3690

Hi AGS and Hard,

As promised but a bit late the link for the debugger.

http://www.mediafire.com/?sharekey=fd1b ... 0a1ae8665a

All remarks welcome.

Sarg.
by SARG
Feb 01, 2009 11:02
Forum: Community Discussion
Topic: Making the GNU debugger more useful (for FreeBASIC users)
Replies: 11
Views: 3690

Some months ago I posted FBdebugger a debugger for FB (only under windows). Search in the forum.
The link for the files is dead but I can upload them again if you're interested.
Sarg.
by SARG
Sep 18, 2008 20:07
Forum: General
Topic: Bug ??
Replies: 1
Views: 773

Bug ??

I can't understand : when using bufimg the screen is completely filled and when not using the buffer it isn't. Need some explaination. Thanks. SARG. Screen 19,24 Dim bufimg As Any Ptr bufimg=ImageCreate(400,300) Circle bufimg,(100,100),50,RGB(120,120,120) 'Circle (100,100),50,RGB(120,120,120) Put(0,...
by SARG
Aug 31, 2008 7:28
Forum: General
Topic: File Exists - Any simple way to detect this?
Replies: 8
Views: 3804

Just use dir as :

Code: Select all

 if dir("<file name>")="" then print "<File name> doesn't exist"
by SARG
May 13, 2008 22:25
Forum: Archive
Topic: FB debugger is back (only windows sry)
Replies: 10
Views: 5966

@Chaos Yes you're right but it's an old problem. The stabs data for redim global variable are not well defined so not possible to acces to the name and address. See this topic http://www.freebasic.net/forum/viewtopic.php?t=9783 I have looked in the source of FBC but not easy to find a solution. The ...
by SARG
May 13, 2008 21:03
Forum: General
Topic: FB Debugger? Who has it?
Replies: 8
Views: 2907

@Yetifoot
Thanks.

For those interested by the debugger have a look at the project forum
by SARG
May 13, 2008 21:00
Forum: Archive
Topic: FB debugger is back (only windows sry)
Replies: 10
Views: 5966

FB debugger is back (only windows sry)

A new version using the -g option http://www.mediafire.com/?oobx2djn9io Include files , DLL could be used. See the file txt for more informations Comments are welcome. Known limitations : bugs in the compilator (please developpers do something) - redim global variables - include files when lines are...
by SARG
May 06, 2008 20:04
Forum: General
Topic: FB Debugger? Who has it?
Replies: 8
Views: 2907

Sry guys not possible for 5 next days as I'll be not connected (holydays in Morroco...).
But I promise to post some code next tuesday .
By the way happy that someone is interested.
SARG
PS 50 years old today so I greet especially the fifty years old (and more) persons.
by SARG
Apr 28, 2008 23:31
Forum: General
Topic: FB Debugger? Who has it?
Replies: 8
Views: 2907

Hi Cherry,

FB debugger isn't dead. I "just" now use the GDB data and I had to rewrite a lot of code. If you're interested (or anybody else) I'll post some code thursday.

SARG.
by SARG
Jan 08, 2008 23:32
Forum: Projects
Topic: FbEdit, new IDE for FreeBASIC written in FreeBASIC
Replies: 964
Views: 243925

That's me reporting the dim issue.
However thanks.
by SARG
Jan 01, 2008 10:05
Forum: Windows
Topic: Window created appears underneath other windows.
Replies: 1
Views: 1445

Just try only with screenres and the flag WindowTitle "Title" ScreenRes 328, 480, 32,1,&h00 Or &h04 It does the same but without the problem. I suppose when changing the resolution the program loses the "hand". With a sleep 2000 between the two lines you'll see the window...
by SARG
Dec 30, 2007 2:04
Forum: Projects
Topic: FB DEBUGGER proof of concept
Replies: 5
Views: 3629

Sry, my fault, just compile testmain.bas as the debug information in the exe contains full names.....
You can also try with your own.
Thanks for testing.

Some more comments :
- Multi thread must be ok
- With FBGFX the display update is a bit strange ????
by SARG
Dec 29, 2007 1:37
Forum: Projects
Topic: FB DEBUGGER proof of concept
Replies: 5
Views: 3629

Thanks. I prefer a standalone program. The previous version accepts as parameter an exe so it's possible to start the debugger directly with the IDE. But if a IDE programmer is interested contact me. Btw redim stabs...... Cha0s has made something but I can't see any change. Could confirm that emit_s...
by SARG
Dec 28, 2007 18:49
Forum: Projects
Topic: FB DEBUGGER proof of concept
Replies: 5
Views: 3629

FB DEBUGGER proof of concept

Purpose : this program is only a proof of concept, use of stabs Debug informations (Option -g) associated with the breakpoint CPU instruction &hCC. Use : - Enter the name of your own program.exe, testmain.exe by default. - You see the UDT and every proc with its variables/parameters. Note that s...