Here's MindFlareRetro's video about his return to retro-computing, and his discovery of MASTEROM. Links to download the ROM and manual are in the video description. Make sure you welcome MFR back to KZbin too! kzbin.info/www/bejne/e6Wai4Bvm5agm8U
@LeftoverBeefcake3 жыл бұрын
12:55 I think the F5 key sets an "edit marker" for the other screen editing command F6, so if you, say, put the cursor at column 1 on the screen, and hit F5, the C64 will remember you put a "marker" there. If you then move the cursor to column 10, and then hit F6, the C64 is gonna erase everything from where you set the marker to the current cursor position, and move any other text to fill in what got erased. The CanDo software authoring package for the Amiga works in a similar manner to do cut and paste operations and it's very awkward until you get used to it. At least that's what I *think* is going on.
@8_Bit3 жыл бұрын
@@LeftoverBeefcake I think that's what it's supposed to do too, but every time I tried it, the whole line would erase. You can download the ROM from MindFlareRetro's video description if you want to give it a try; let me know if you figure it out.
@LeftoverBeefcake3 жыл бұрын
@@8_Bit Tried it out for a while and yep, something seems buggy with that feature. No matter what it always erases the line. Also don't hit F8 without first defining a SYS address with =J or the whole machine will lock up!
@8_Bit3 жыл бұрын
@@LeftoverBeefcake Sounds like we have some fixes to do for V4 :)
@PrivateOGITH2 жыл бұрын
do you Know About the AVGN ???
@MindFlareRetro3 жыл бұрын
Another super informative video, Robin. Thank you for explaining MASTEROM 64 so well. I am glad I asked you to do this MASTEROM deep dive -- there is no one better to analyze and explain this forgotten C64 Kernal replacement both on its surface and under the hood. Well done, as always ... and thank you, 8-Bit Sensei Robin!
@8_Bit3 жыл бұрын
Thanks for the invitation, it's been fun working on this with you!
@painkillergko3 жыл бұрын
Thank You for shearing your discover :) C64 forever :D
@MindFlareRetro3 жыл бұрын
@@painkillergko You are welcome!
@ianide24803 жыл бұрын
My uncle had a ton of software for the c64 back in the 80's. At that time he gave a bunch of it to me, including a disk copy program that would copy anything. Even the most copy protected game titles were no match. This alone made it so me and my friends could share absolutely everything. Talk about simpler times.... Thanks for yet another interesting c64 video.
@scality43092 жыл бұрын
That is called a nibbler.
@scality43092 жыл бұрын
Fast hackem?
@jordancobb5093 жыл бұрын
I can't "life" without 8-Bit Show and Tell .
@mikeyoung98103 жыл бұрын
ditto
@almurray20003 жыл бұрын
I lol’d when you read, verbatim, “can you life without it?”
@CandyGramForMongo_3 жыл бұрын
I’ll take Canadian Commodore History for $400, Alex. Oh why do I know much more about the C64 now than I did then? It’s thanks to fellow fans like you! 😊
@mikeyoung98103 жыл бұрын
I did most of my basic programming on a c64 and I miss it. It's just not the same using a remake c64. There was just something hypnotic about that blue screen and just being able to start entering a program. I wrote some very large games in the sloppiest code you ever saw and I'd spend hours tracking down bugs but those hours would seem like minutes and entire days would vanish. Those days are gone but I do miss them.
@paulkoopmans46203 жыл бұрын
Your always explaining things so well Robin. I grew up with an commodore but was to young to grasp the machine programming. I truly enjoy it now being explained. I am originally dutch but live in Canada now for more than 10 years... and the Bob and Doug reference was nice. Thanks for all your hard work eh!
@Breakfast_of_Champions3 жыл бұрын
An interesting find. There were a few kernals with similar features in the 64's golden days when the Amiga had already taken over. You can only fit so much into the cassette and some other memory spaces. The best I found so far is the Jiffy/Dolphin-DOS hybrid, that one is a very mature hack.
@lonewretch3 жыл бұрын
I dunno, I still loved my epyx fastload cartridge. Especially after I put a button on it to do a soft reset so I could go into machine code and change things, then sys the code start address... oh man your videos take me back in time..
@MichaelDoornbos3 жыл бұрын
0:30 Am I the only one who thinks MASTER CONTROL when reading the name? 3:48 I love that you counted the exact number of diff bytes 6:15 Interesting color choices 14:40 Side by side memory listings might be my new favorite nerdy thing 15:58 Pretty clever use of this vector 21:50 Yay the old credits are back! END OF LINE
@jeremyzeimet36313 жыл бұрын
Thank you so much for documenting this stuff, it's so helpful to those of us just getting into commodore computers.
@RetroGameCoders3 жыл бұрын
Wow, another hidden treasure uncovered - great stuff! 🤯
@CommodoreFan643 жыл бұрын
I was a huge Jiffy DOS user back in the day, but never knew this existed. Truely an awesome find! 👍
@painkillergko3 жыл бұрын
Thanks for the presentation, Robin. I'm about to start testing :)
@michaelcarey3 жыл бұрын
This is so cool! What an amazing research project. Thanks to you both for sharing this with us all. The extra spaces in the version number are triggering my OCD though! I might have to create my own version with a tidier looking opening screen :-)
@JanBruunAndersen2 жыл бұрын
Seems a bit memory inefficient with all those LDA/CMP/BNE to implement the new commands. I would have tried to set up some kind of general lookup table with codes to look for and the adress to jump to. Perhaps with a single byte with a bitmap indicating if the lookup is for one of the new command keys or one of the Fn keys. The bitmap could even be used to indicate if the jump adress is absolute or relative. With such a table in place, the decoding could be done with the Y register indexing the table and 4-5 instructions to LDA/CMP/BNE. I am not sure how much memory space could be saved (it all depends on how many of those nearly identical sequences of LDA/CMP/BNE/JMP that could be eliminated) but it sure would look much nicer!
@The.Doctor.Venkman3 жыл бұрын
Great news, Robin!
@game_whisperer16063 жыл бұрын
Nice job Robin, you did it justice.
@8_Bit3 жыл бұрын
Thanks, and you did some nice detective work!
@Ensign_Cthulhu2 жыл бұрын
16:21 Question - as I understand it, the CMP instruction compares the value against the accumulator contents. How is the keystroke being fed into the accumulator? Is this what the subroutine at $0079 does?
@cairsahrstjoseph9963 жыл бұрын
The sort of ROM replacement I would have liked to have back then. There's so many possible uses for the cassette routine space and it could be changed without affecting compatibility with anything disk-based.
@tommyovesen3 жыл бұрын
Thanks for sharing this Robin. Really interesting.
@wildorb12093 жыл бұрын
Ok, that was new for me... Until today I didn't know that there were other "kernels" for the C64. THX for the video.
@8_Bit3 жыл бұрын
In case you're interested, here's a video I made about all the different official Commodore variations on the KERNAL: kzbin.info/www/bejne/f5eXnpamp9Z1kNk
@frankmeyer99843 жыл бұрын
Wow, thank you very much! Seems to be a interesting Kernal!
@csbruce3 жыл бұрын
1:06 That web page looks familiar… 3:39 I thought Macbeth was dead… and he used a dagger instead of a staff… 6:08 Like the regular Kernal, MASTEROM chose colors with a low contrast difference. Is it wise to change the screen color? How many BASIC programs assume the default screen colors when they start? The best plan would be to use the normal screen colors but with a White cursor, which a lot of people probably activate habitually anyway. 7:39 I remember a hit song about SYS 64738… 11:23 Are you sure you have to add the ,8 on JiffyDOS? It eliminates the cassette routines, too. 17:15 Ha - I figured you'd get trapped in Quote Mode! You could type a second Quote and a Delete. 18:17 The EOR #$01 doesn't save anything over the stateless and more clear LDA #$09. Technically, it does the EOR if the drive ★IS★ equal to 8. 21:23 Oh no, the floating hand is typing telepathically now! I, for one, welcome our new floating-hand overlord. 22:16 There's that hit song!
@8_Bit3 жыл бұрын
I finally got trying it on JiffyDOS and you're right, the ,8 isn't needed there either. Interestingly, if you LOAD"$" on JiffyDOS then directory is loaded to $0400 implying that it's doing the equivalent of ,8,1 - I didn't expect that.
@csbruce3 жыл бұрын
@@8_Bit: ,8,1 makes the most sense as a default since many programs are launched that way, and for almost all C64 programs, it's harmless even if it isn't necessary. Did you specifically test if MASTEROM is doing ,8,0?
@8_Bit3 жыл бұрын
I just tried and it seems that MASTEROM also does ,8,1 so LOAD"$" will display the directory on screen as it loads to $0400, just like JiffyDOS. I agree it's a sensible default, but it was still a bit of a surprise since the stock KERNAL has LOAD defaulting to ,0
@VenturiLife2 жыл бұрын
Norland.. Somebody missed the "B" key right next to "N"
@microchipmatt2 жыл бұрын
Your videos are awesome.
@HAGSLAB3 жыл бұрын
Very interesting video, great watch 😊
@generalkilbabathemadmansch36022 жыл бұрын
great little nugget of history. And very informative. Would you ever write your own custom system ROM?
@rkornilo3 жыл бұрын
Funny, I saw the address at the beginning with "Nipissing Rd." and thought - hey I visited North Bay, Lake Nipissing in the summer of 1985 (I'm from the US). Just looked up the address on Maps - nope, not even close to the lake. :-) I very much enjoy your videos, Robin (sp?).
@8_Bit3 жыл бұрын
Yeah, Nipissing is used as a name fairly often in Ontario; I'm not sure if it's all in reference to the lake or if there is another origin to the name. And yes, Robin is the correct spelling, thanks!
@luisvolkyazul Жыл бұрын
Hi Robin, is this the same as JiffyDOS?
@8_Bit Жыл бұрын
It's similar in concept, in that it replaces the cassette ROM routines for other features that disk users will find more useful, but the particular features are mostly different, especially the JiffyDOS fast disk load protocol, which is not in MasterROM.
@luisvolkyazul Жыл бұрын
@@8_Bit thank you so much for your help
@zeromega3 жыл бұрын
What a great find, I love it.
@fordprefect802 жыл бұрын
I used to own a c64 that had the Cockroach rom kernal replacement installed. No Idea about it specs or abilities but it seemed to be near or fully 100% compatible.
@uriituw2 жыл бұрын
I had a Cockroach back in the day. I had a switch to switch between that and the original ROM.
@AnnatarTheMaia3 жыл бұрын
What's that UNIX you were running at 3:40 into the video? In what looks like C or Tenex C shell, no less!
@8_Bit3 жыл бұрын
It's actually just MacOS with a custom prompt!
@AnnatarTheMaia3 жыл бұрын
@@8_Bit the Grey background tricked me, I thought that it might be NetBSD.
@IntenseGrid3 жыл бұрын
Did you ever do a show on your SDCARD dongle? How about Ultimate IIplus?
@whitslack3 жыл бұрын
How did companies get away with redistributing code that was largely copyrighted by Commodore? Did Commodore freely license the KERNAL for modification and commercial redistribution? I would be shocked if so.
@8_Bit3 жыл бұрын
I assume Commodore didn't fight it since it was something their customers wanted and Commodore wasn't providing it themselves, and there was no financial loss to Commodore as their customers had already purchased the original KERNAL legally. Commodore did go after 3rd party disk drive manufacturers that ripped the 1541 ROM code, but in that case, Commodore was losing out on sales of original 1541 drives.
@Okurka.3 жыл бұрын
The F5/F6 functions do work in MASTERAID, the precursor of MASTEROM.
@GerbenWijnja3 жыл бұрын
I see you're the lucky owner of Mountie Mick's Deathride! I have been looking for that one for years.
@8_Bit3 жыл бұрын
It's a rare one! I gotta ask if you have an original "The Detective"; that's probably #1 on my want list now.
@GerbenWijnja3 жыл бұрын
@@8_Bit Sorry, no I don't have that game. Let me know if you're looking for anything else. (Maybe I should make a list of stuff I have...)
@8_Bit3 жыл бұрын
@@GerbenWijnja Oh, I was just curious if we were hunting for the same games - not that I would try to take it from you! :)
@GerbenWijnja3 жыл бұрын
@@8_Bit Aahh. Well I only collect games that I used to play when I was young. Everything else can go. :) And I like model trains, so I loved Deathride! But yeah it's very rare. I do have an original Deathride disk, but no case... I'm also still looking for Wings of Fury, and Pogo Joe.
@8_Bit3 жыл бұрын
@@GerbenWijnja Pogo Joe is great, and it's funny but I never played Wings of Fury! I just watched some gameplay video just now, it looks very interesting. I like how it has a close-up and distant camera, very unusual for 8-bit games.
@benbaselet20263 жыл бұрын
Not to be confused with the MastuROM, keeping you company all those long winter nights.
@tektel3 жыл бұрын
In my country about 10% of C64s had the floppy drive
@svenpetersen19653 жыл бұрын
Seems to me like a useful thing. I will definitely give it a try. I like your channel very much, BTW.
@fattomandeibu3 жыл бұрын
All but one(a game cartridge) of my programs are on tape, so this would be useless to me. You did pre-empt this by mentioning most people here in England would indeed be using tape, though. Very interesting seeing this stuff, nonetheless.
@LordmonkeyTRM3 жыл бұрын
How about a video on Novaload? Maybe an explanation of why it makes that noise??
@awilliams17013 жыл бұрын
Mindflayer retro released a video!!!!??!!?!? (I guess it's been so long youtube didn't bother to tell me)
@8_Bit3 жыл бұрын
I actually did get a notification when his video released! I must be lucky :)
@napomania3 жыл бұрын
Hi Robin. Have you ever known of Geckos , a " distro unix" for commodore 64?
@8_Bit3 жыл бұрын
Yes, I talk to the author André Fachat sometimes, and saw the presentation Glenn Holmer gave on it at VCFMW a couple years ago. It's really impressive.
@richardblack57103 жыл бұрын
Would you be able to convert this to a crt file and post it? Backbit and Kung Fu Flash support crt files but not bin files. I don't have an EasyFlash.
@8_Bit3 жыл бұрын
As far as I know Backbit and Kung Fu Flash don't support the KERNAL replacement feature that EasyFlash 3 has. EF3 does some trickery to switch out the KERNAL ROM in the C64 with a .bin file. Pretty sure a .crt file can't do this.
@richardblack57103 жыл бұрын
@@8_Bit I asked Evie and and she said that the Backit Pro with the PLAster V2 will support KERBAL replacement. I have the Backbit Pro, so I am ordering the PLAster V2. Thanks for replying.
@cemmy4103 жыл бұрын
You mention MFR's video several times, but there's not actually a link to it in the description 😅
@8_Bit3 жыл бұрын
It won't be released until Saturday; check out the bottom paragraph of the Patreon email/post, I explain it there :)
@cemmy4103 жыл бұрын
@@8_Bit that explains why I couldn't find it!
@8_Bit3 жыл бұрын
Just in case anyone didn't see the link to MFR's video yet, it's now live: kzbin.info/www/bejne/e6Wai4Bvm5agm8U
@donaldwiller92383 жыл бұрын
Grate job.
@sypialnia_studio3 жыл бұрын
I always watch your videos at 1.25x speed.
@dankellogg3 жыл бұрын
How have I lifed my live so long without MASTEROM?
@50hzAva3 жыл бұрын
Is that manual original? That would make it probably the earliest known use of the term dongle
@8_Bit3 жыл бұрын
It is the original manual, but the term dongle goes back to at least 1981, for instance: archive.org/details/PersonalComputerWorld1981-10/page/132/mode/2up?q=dongle
@CelentAle3 жыл бұрын
slippery butterfield! 😅😋
@LjubomirSimin3 жыл бұрын
Was this licensed by Commodore? It's clearly not a full reimplementation of whole kernal.
@6581punk3 жыл бұрын
I suppose Commodore saw it as a beneficial change? It's a totally different scenario to the clones of the 1541 drive that bundled the original 1541 code. Commodore saw no benefit from that.
@csbruce3 жыл бұрын
They could rationalize it as the ROM chip being useless without being plugged into a C64, and anyone who bought a C64 has paid Commodore a copyright fee for the ROM they're replacing.
@wlorenz653 жыл бұрын
I used the same color scheme when I burned my 64'er ROM from the 64'er Magazine. It looks good on a 14" black-and-white TV which has been converted into a monitor by adding a SVHS luminance input, a 64'er Magazine hardware project. That color scheme is not well suited for color displays, though.
@tarstarkusz3 жыл бұрын
We can call it the Canuck Kernal!
@alexanderwingeskog7583 жыл бұрын
I like this kernel, but maybe I would have done somethings differently. Something that I discovered with my Amiga and programming that an editor with macro ability was just awesome. Maybe if you (not specific you but someone) could have done a neat/small RLE (or anything smaller, faster better ofc) compression/decompression built it you could have had en small editor in kernel that would have a macro function (basic record/playback with search and find). It would not be impossible I think and it would have leveraged the C64 so much more... I mean if you don't use cassette (datasette) anymore you would be more "serious" user and then a basic text editor would be nice thing to have. Maybe have extra features loaded on the disk (which came with the ROM :-) which could turn it into a wordprocessor or IDE for either assembler or C, Pascal, Comal, ADA, Forth and so on and on... That would have been cool in 1987!
@dougjohnson42663 жыл бұрын
No fast disk IO keeps me from wanting to use it full time but the rest is cool.
@NuntiusLegis3 жыл бұрын
But I adore my Datassette.
@DAVIDGREGORYKERR3 жыл бұрын
Would have been nice if the COMMODORE C64 had an Assembler like the MEMOTECH MTX512 had that could be accessed by typing ASSEM 10 return to let you write machine code programs.
@estebanvillalobos23033 жыл бұрын
SO IT'S A DOS WEDGE?
@8_Bit3 жыл бұрын
YES IT'S A DOS WEDGE BUT IT ALSO HAS SOME EXTRA FUNCTIONS
@XalphYT3 жыл бұрын
GOOD QUESTION. GOOD ANSWER. THANKS.
@8BitNaptime3 жыл бұрын
@@XalphYT I AGREE BUT WHY ARE WE ALL YELLING?
@BrainSlugs833 жыл бұрын
You can't life without it. 😂😂💀
@b43xoit3 жыл бұрын
What is "KERNAL?""
@Okurka.3 жыл бұрын
en.wikipedia.org/wiki/KERNAL
@b43xoit3 жыл бұрын
@@Okurka. Weird.
@8BitNaptime3 жыл бұрын
@@b43xoit What's weird?
@b43xoit3 жыл бұрын
@@8BitNaptime That they would stick with the misspelling.
@8BitNaptime3 жыл бұрын
@@b43xoit So? They weren't curating the OED.
@Chexsum2 жыл бұрын
try f5 then move the cursor then f6
@user-vn7ce5ig1z3 жыл бұрын
=P is an emoticon ◔_◔ is a donger 🤨 is an emoji
@darrylteichroeb91322 жыл бұрын
Take off eh!
@bigbeef26543 жыл бұрын
Or they could have just used memory banking and have unlimited ROM sizes .
@lsdowdle3 жыл бұрын
I left a comment on your website but it is awaiting moderation. Please check it out when you get a chance.