Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 28 |
Nodes: | 6 (0 / 6) |
Uptime: | 48:17:15 |
Calls: | 422 |
Files: | 1,024 |
Messages: | 90,422 |
Is there a way to change the filetype from Applesoft? Or is there a
way to get BLOAD to load any file regardless of type without
specifying the T parameter?
On 4/8/25 10:22 PM, Duhast wrote:
Is there a way to change the filetype from Applesoft? Or is there a
way to get BLOAD to load any file regardless of type without
specifying the T parameter?
In addition to ProCMD as Kelvin suggested, in the ProDOS 8 environment ProTERM 3.1 allows file type and aux type changes.
Also, stock AppleWorks 5.1 has a file type changer, and if you add the InitPack, also allows aux type changes.
Hugh Hood
I want to BSAVE a file, and when I type BSAVE test,a$2000,l100,T$FF as
an example, I get a file type mismatch error. Does the T parameter not
work with BSAVE?
Can you BLOAD any file without the T parameter?
On 4/8/25 10:22 PM, Duhast wrote:
Is there a way to change the filetype from Applesoft? Or is there a
way to get BLOAD to load any file regardless of type without
specifying the T parameter?
In addition to ProCMD as Kelvin suggested, in the ProDOS 8 environment
ProTERM 3.1 allows file type and aux type changes.
Also, stock AppleWorks 5.1 has a file type changer, and if you add the
InitPack, also allows aux type changes.
Hugh Hood
I want the filetype change to be done under Applesoft if possible.
I want to BSAVE a file, and when I type BSAVE test,a$2000,l100,T$FF as
an example, I get a file type mismatch error. Does the T parameter not
work with BSAVE?
Can you BLOAD any file without the T parameter?
You cannot create a new file with BSAVE with a new type. You must CREATE it first.
CREATE test,t$ff
BSAVE test,a$2000,l100,t$ff
You can then BLOAD it as well, but you'll almost certainly need to give the address:
BLOAD test,a$2000,t$ff
I'm not really sure what you're up to, you may run into other problems.
Kent