Page 1 of 1

Initialization address

Posted: Sun Jan 19, 2003 9:37 am
by wb4bex
Dear QB Cafe,

I want to create a simple routine that I can convert to a 'com' file using the DOS command 'exe2bin'. The first step is to create a stand alone 'exe' file.

I have done that. But in order to use 'exe2bin', the 'exe' file has to load or init at address '0' or '100' (I presume these are hex addresses but I'm not presently sure). The point is ...is there a way to specify an init address when creating an 'exe' file in QB45?

Rich

Re: Initialization address

Posted: Sun Jan 19, 2003 9:44 am
by Guest
the
ORG 100 is just a psp header for EXE files. Com files does not have that.

I don't have anyknowlegde with regards to ex2bin as I haven't used it. It prolly takes care of that as long as you proggie is small.

;*)