Search found 29 matches

by TRANERAECK
Mon Apr 04, 2011 10:07 pm
Forum: General Discussion
Topic: How to convert hexadecimal to integer
Replies: 5
Views: 19057

I see what you are saying here

I was trying to figure out a compiler that doesn't rely on a function. Also, don't forget somewhere at the end of the loop to CLEAR the reading variable so the compiler won't use memory. I think if you use a library for extended memory that would be nice and also add all you can for commands with th...
by TRANERAECK
Mon Apr 04, 2011 10:00 pm
Forum: General Discussion
Topic: HAVE found more on DIR
Replies: 1
Views: 9652

HAVE found more on DIR

HERE is a way to save the folder you need to know about that file listing I POSTED it is for MAC QBASIC but hey what the hell. ' File search example program. ' Copyright 1988-1991 Microsoft Corp. ' Written in Microsoft QuickBASIC Version 1.00 for Apple Macintosh. ' Microsoft makes no claims about su...
by TRANERAECK
Mon Apr 04, 2011 9:54 pm
Forum: General Discussion
Topic: Assembly Answer
Replies: 12
Views: 23791

I see what your saying here

I tried making a big post but see what you are saying and I received Internal server error.
by TRANERAECK
Mon Apr 04, 2011 3:25 pm
Forum: General Discussion
Topic: When making a compiler use the START command
Replies: 1
Views: 9640

When making a compiler use the START command

If you are making a compiler and use a library to do so check for the first two byte as a way to define the same commands quickbasic uses use my hexadecimal converter if you can finish it. USE START as it doesn't take any size of the file for use as memory stealing other than your dimensioned arrays...
by TRANERAECK
Mon Apr 04, 2011 1:48 pm
Forum: General Discussion
Topic: Here is some modex code I found
Replies: 1
Views: 7860

Here is some modex code I found

I found this by Jason Plackey on a web site thought I'd share: DECLARE SUB ModeX () ' DECLARE SUB OutPort (PortAddr&, vh%, vl%) ' DECLARE SUB Standard () ' DECLARE SUB SetVOffset (Offset&) ' ' SCREEN 13: DEF SEG = &HA000: CALL ModeX' ' FOR count% = 0 TO 63' redval& = count%' greenval...
by TRANERAECK
Sat Apr 02, 2011 6:47 pm
Forum: General Discussion
Topic: How to convert hexadecimal to integer
Replies: 5
Views: 19057

How to convert hexadecimal to integer

I need to know how to convert hexadecimal to integer. Here is my sample program: 1 REM PROGRAM: COMPILER.BAS 2 REM TYPE OF COMPILER CONVERTING HEXADECIMAL 3 REM CREATED BY: GREGORY LYONS 4 REM CONTAINS ORIGINAL IDEAS BY GREGORY LYONS 5 REM PROGRAM IS FREE TO USE ALSO IS INCOMPLETE 20 INPUT "FIL...
by TRANERAECK
Sat Apr 02, 2011 9:24 am
Forum: General Discussion
Topic: How to make a library file
Replies: 0
Views: 13808

How to make a library file

How to make a library file is not so easy. 1st: compile file with bc.exe 2nd: run LINK at OBJECT /QU plus object file minus extension at run should say qlb full path with qlb extension nul press enter at library full path with BQLB45.LIB 3rd: run LIB Library name full path with filename.LIB CREATE Y...
by TRANERAECK
Thu Mar 24, 2011 4:05 am
Forum: General Discussion
Topic: Interesting qbasic code
Replies: 1
Views: 9506

Interesting qbasic code

I found some code on powerbasic's web site such as how to read a dll and how to read a lib file. There is also some cool stuff about a graphics programming manual or something but with the assembly idea i posted from microsoft it should be pretty darn good. Here is the website: http://www.powerbasic...
by TRANERAECK
Thu Mar 24, 2011 3:19 am
Forum: General Discussion
Topic: Assembly Answer
Replies: 12
Views: 23791

Assembly Answer

Here is what I found at Microsoft. How to save and restore a text mode screen I find it interesting, it uses assembly, and it makes a call to an assembly file. Defint A-Z '$Dynamic Dim Storage(1999) FirstLine = 1 LastLine = 5 Cls For X = 1 To 15 Color X Print String$(80, X + 64); Next Locate 20 Prin...