Welcome to Emulationworld

Forum Index | FAQ | New User | Login | Search

Make a New PostPrevious ThreadView All ThreadsNext ThreadShow in Flat Mode*


SubjectRe: CCS64 Printer emulation Reply to this message
Posted byBig-Pete
Posted on12/06/02 04:23 PM



What are you trying to print?

Just to print a line you'd type:

OPEN4,4
PRINT#4 "Insert text here"
CLOSE4

To list a program currently in memory you'd type:

OPEN4,4
CMD4
LIST
PRINT#4
CLOSE4

The second 4 in the OPEN command is the printers device number. Change it to suit whatever number the emulator is using. The first 4 is simply a number that is assigned to that particular print job at that time, and when you PRINT#4 it'll get printed.

As far as individual programs go, you dont have to enable anything, you just have to configure it for the right printer. I had a Star LC-10C back in the day and most programs supported it. If not, i just used the generic Epson setting and flicked some DIP switches in the printer to make it Epson compatable.

That's taken out of the old manual for my LC-10 that i still have on the bookshelf along with the C=64 manual, C=64 programmers guide and the 1541 programmers guide :)

You've got me all nostagic now... Good old days

Pete



-
Entire Thread
Subject  Posted byPosted On
*CCS64 Printer emulation  craterface12/04/02 02:34 PM
..Re: CCS64 Printer emulation  Big-Pete12/06/02 04:23 PM