Search found 55 matches

by netaces2k
Apr 02, 2011 10:56
Forum: DOS
Topic: How to start over in DOS
Replies: 27
Views: 9912

1. Yes 2. FBIDE (personal preference) 3. At last check, FB doesn't support BIOS (protected mode calls / functions) 4. Sometimes When you are doing your programming, you can use any IDE, editor or ASCII capable app that you like. I use everything from Notepad to the DOS Edit.com. (text editor), PFE32...
by netaces2k
Apr 02, 2011 10:36
Forum: DOS
Topic: Intel Speedstep under DOS?
Replies: 5
Views: 5821

CPU clock speeds are simple. Every processor has a base run speed, and the active clock is afunction of the multipliers that it accepts. For example. If you have a 1.00 GHz CPU. It can be clocked there, by several ways. 500 MHz x 2, 333 MHz x 3, 250 MHz x 4 or 1 GHz x 1. Every processor is unique. T...
by netaces2k
Apr 02, 2011 10:22
Forum: DOS
Topic: USB mass storage / WebCams / printers / .... in DOS
Replies: 13
Views: 10542

Along the same sort of line...

Is there a lib or kit, or does anyone know how to do some PCI handling via FB? I've not seen any, and the web is thin on the topic...

My humble thanx and appreciations, in advance...
by netaces2k
Jan 26, 2010 5:07
Forum: DOS
Topic: FBCompiler .vs. WindowsUpdates...
Replies: 13
Views: 5733

FBCompiler .vs. WindowsUpdates...

Has anyone else, noticed, that your compiler either won't compile, or if it manages to do it, the .exe won't run? And, NO I don't have a virus or spyware. My FB machine is a standalone, and was freshly loaded a short time ago. I think, MS has changed the API call path or header pass struct, so thing...
by netaces2k
Aug 12, 2009 2:16
Forum: DOS
Topic: Compiler Error - -lgcc missing
Replies: 2
Views: 2460

Compiler Error - -lgcc missing

Command line:
fbc tblgen.bas

Results: (no exe was created)
f:/freeba~1\bin\dos\ld.exe: cannot find -lgcc
fbc tblgen.bas f:/freeba~1\bin\dos\ld.exe: cannot find -lgcc
by netaces2k
Aug 12, 2009 2:01
Forum: DOS
Topic: Compiler Error - -lgcc missing
Replies: 2
Views: 2428

Compiler Error - -lgcc missing

F:\Rob>fbc tblgen.bas
f:/freeba~1\bin\dos\ld.exe: cannot find -lgccF:\Rob>fbc tblgen.bas
f:/freeba~1\bin\dos\ld.exe: cannot find -lgcc
by netaces2k
Aug 30, 2008 18:48
Forum: DOS
Topic: SB In DOS mode
Replies: 2
Views: 2670

SB In DOS mode

This is for the Sound Blaster output thread... I messed up. Oops... :p A couple of things to know.... First, KNOW your sound card. Which one is it? You will (in some cases) need a BLASTER environment variable. Where - BLASTER = Annn Inn Dnn Hnn Pnnn Tn Ennn A = Base IO address (usually 0x0220) I = I...
by netaces2k
Aug 30, 2008 17:58
Forum: Community Discussion
Topic: StrLib
Replies: 0
Views: 1289

StrLib

I think the StrLib is a cool idea. I would be happy to contribute some material to it, if you would lile.
by netaces2k
Mar 12, 2007 15:59
Forum: Beginners
Topic: Framerate for 900mhz
Replies: 17
Views: 6247

Frame Rates (FPS)

I'm not sure that everyone is clear on what a frame rate is... And in addition, what impacts a the computers ability to render(display) video to you on your monitor(screen). If we take this from the beginning... The computers display sub-system is made up of many parts. NOT just video hardware. In o...
by netaces2k
Mar 12, 2007 15:16
Forum: General
Topic: INPUT / LINE INPUT - Max Number of Variables?
Replies: 2
Views: 1340

INPUT / LINE INPUT - Max Number of Variables?

With an INPUT statement, or LINE INPUT, even when used with the #{filenumber} format, how many variables can be used at a given time to read input form the console or a file?

If the input list is LONG... Can the variables be shown as var1..., _ var20...?

OR is this not possible?
by netaces2k
Oct 09, 2006 20:07
Forum: General
Topic: The Elusive 'File.Bi'...
Replies: 2
Views: 1452

Thanks. :)
by netaces2k
Oct 09, 2006 19:22
Forum: General
Topic: The Elusive 'File.Bi'...
Replies: 2
Views: 1452

The Elusive 'File.Bi'...

The FreeBASIC Wiki mentions, that a file called 'File.Bi' is somehow needed to use the 'File' commands?

Is that no longer true? Or did someone, forget to include it in the \inc folder? Or is there more to this story?...
by netaces2k
Oct 09, 2006 16:19
Forum: DOS
Topic: Criticism of FB DOS on wikipedia.
Replies: 3
Views: 3624

There is a serious and distinct difference between a DOS programmer and just a 'prograammer'. I've been doing DOS programming for almost 30 years (giving away my ancient-ness... :p ). But the author of that piece, doesn't deserve the disc space that rant takes. 'Nuf said. -- That User Came From -- I...
by netaces2k
Oct 09, 2006 16:14
Forum: DOS
Topic: DOS environment variables
Replies: 2
Views: 3271

When dealing with the ENVIRONment, you have to remember. A program, even when running under MS-DOS, PC-DOS, DR-DOS, FreeDOS, etc. is, still a child process. Whether or not, the program (child process) is NOT able to make a PERMANENT change. Becasue when the program opens a 'DOS Command Shell" t...
by netaces2k
Oct 07, 2006 19:02
Forum: Sources, Examples, Tips and Tricks
Topic: CPU Identification
Replies: 9
Views: 7798

More New CPUID Features

I've added a whole host of new features to the program written by MichaelW. So it's swell now. '------------- ' CPUID32.BAS '------------- '$Dynamic Option Explicit Common Shared CPUFt$, TimeS, StartTime, EndTime, Famly!, Famly$, Comma$ Common Shared Stepp!, Stepp$, CModel$, CModel!, Brand$, CPUI$, ...