"The Wizard of Oz" wrote in message news:pan.2004.07.22.19.37.20.91630@emeraldcity.gov... > > The 16 bit Orca/M can produce 8 bit code but it won't produce a > > .SYSTEM file directly but it can produce an 8 bit BIN file that can be > > BRUN from BASIC.SYSTEM. > > I am interested in the BIN files. I want to use this as a general > tool. This little bit of information can save me weeks of hunting around. > I was only able to save to shell files. How can it save to a BIN file? > Please remember it's been over 10 years since I've touched it. > I would recommend using the 65C02 ON directive in your assembly. After you assemble the code use the MAKEBIN utility. MAKEBIN [-P] loadfile [binfile] [org=val] -P , supress copywrite info. loadfile, what orca produced binfile, name of bin to create org=val, if absent $2000 is the default MAKEBIN orcaout would turn the orcaout load segment into a bin file assembled at $2000 MAKEBIN -P orcaout /HD1/MYSTUFF/MYBIN ORG=$1000 MYBIN ASSEMBLED AT $1000 IS CREATED IN /HD1/MYSTUFF FILETYPE orcaout SYS The bin created in step 1 becomes a sys $ff file