How can I get text from my PC to 64 core?

User avatar
HerrBerzerk
Posts: 273
Joined: Tue Feb 01, 2022 1:45 pm
Has thanked: 121 times
Been thanked: 39 times

How can I get text from my PC to 64 core?

Unread post by HerrBerzerk »

Hi,

maybe I'm blocked, but I can't figure out a convenient way to transfer a basic program I wrote in the editor on my mac to the c64 core...?

Thanks for a hint.

FPGA64
Top Contributor
Posts: 937
Joined: Mon Mar 01, 2021 3:10 pm
Has thanked: 49 times
Been thanked: 374 times

Re: How can I get text from my PC to 64 core?

Unread post by FPGA64 »

Write it on an emulator on the Mac. Save as d64 and then load the D64 on the C64

docbobo
Posts: 17
Joined: Sun Dec 26, 2021 9:59 pm
Has thanked: 1 time
Been thanked: 8 times

Re: How can I get text from my PC to 64 core?

Unread post by docbobo »

Not sure if it's the best way, but you could probably create a D64 image. There seem to be a few tools out there for MacOS to do so without an Emulator, e.g. Droid64. Have I tried any of those? nope.

User avatar
thera34
Posts: 132
Joined: Fri Sep 11, 2020 7:51 am
Has thanked: 96 times
Been thanked: 89 times

Re: How can I get text from my PC to 64 core?

Unread post by thera34 »

I don't know about MacOS (and most probably is the same scenario), but for Win/DOS you can fast create/format/manipulate files on floppy images with VICE emulator:

-get VICE C64 emulator (bonus point for being portable as well)
-create and format an empty D64 image using c1541 utility from VICE:

Code: Select all

c1541.exe -format DISKNAME,01 d64 whatever_name.d64

-copy over each needed files you need transferred:

Code: Select all

c1541.exe -attach whatever_name.d64 -write filename.ext

Hope it helps.

User avatar
HerrBerzerk
Posts: 273
Joined: Tue Feb 01, 2022 1:45 pm
Has thanked: 121 times
Been thanked: 39 times

Re: How can I get text from my PC to 64 core?

Unread post by HerrBerzerk »

Thanks, vice does also exist on mac. Probably this is the easiest way. save a "disk" with the text on vice and copy it over.

Thanks y'all!

auk
Posts: 7
Joined: Wed May 22, 2024 1:40 pm
Has thanked: 2 times
Been thanked: 2 times

Re: How can I get text from my PC to 64 core?

Unread post by auk »

BASIC programs are tokenized, so if you're using a text editor to write them then VICE's petcat utility may be in order, e.g:

Code: Select all

petcat -2 -o outputfile.prg -- inputfile.txt
Post Reply