Rendered at 23:18:22 GMT+0000 (Coordinated Universal Time) with Cloudflare Workers.
tensor 1 days ago [-]
One of the amazing things about this project is that the author built physical harnesses for real early CPUs so that he could build test suites against the real hardware and ensure the emulation is 100% correct, down to every timing and quirk of the original hardware.
aw1621107 1 days ago [-]
To add on top this, the author wrote multiple blog posts on their setup [0, 1, 2]. The project itself is hosted at https://github.com/dbalsom/arduinoX86
Hi, thanks for checking out MartyPC.
I'm the developer if there are any questions.
indrora 1 days ago [-]
What's your favorite "What the FUCK were they smoking when they designed this?" moment?
GloriousCow 1 days ago [-]
easy - the PCjr keyboard interface.
It is insane because IBM wanted a wireless keyboard. If you're not familiar with the PCjr keyboard, it has two IR transmitters (they are electrically the same, just having two gives you a better transmission path). The PCjr system has an IR receiver.
Now, a normal keyboard cable is a standard two-wire serial protocol with clock and data. Being wireless, you have no clock, so you have to synchronize clocks, or have clock recovery built into the protocol. The PCjr does the former, using the 8253 timer chip.
The keyboard has no way of knowing if the system has received a keystroke, so the system must receive every keystroke - they can't be stored in a fifo, they can't be resent if the CPU missed it.
This rules out the possibility of using system interrupts - so when you type a key on the CPU and the IR receiver gets the start bit - the NMI line is raised, the 8253 is programmed to time the clock bursts from the IR receiver, and the CPU reads out every bit of the scancode.
In software.
GloriousCow 1 days ago [-]
The PCjr also famously has no DMA, so things like floppy drive transfers are both extremely slow and somewhat unreliable - the IBM floppy controller is somewhat additionally weird is that they disable interrupts as well. The only way the PCjr knows what the controller is doing is by polling its status register, and there is enough ambiguity that it sets a 555 timer that will reset the FDC and start everything over if things time out.
The combination of these two decisions means its inadvisable to type while your floppy drive is transferring data
AmazingEveryDay 1 days ago [-]
Many people are very angry that you used Rust. Did you expect this choice to cause such an uproar?
JoshTriplett 1 days ago [-]
Angry people gonna angry. Don't take criticism from people you wouldn't take advice from.
GloriousCow 1 days ago [-]
People will generally get angry no matter what you do. People are also angry it is MIT licensed.
But honestly I wanted to learn the Rust programming language and I thought writing an emulator was a good a project to learn as any.
I have been working on a emulator in C++ in collaboration with a friend, it is also cycle-accurate. It is called XTCE-Blue.
pjmlp 2 days ago [-]
Adlib support! At least someone else remembers it wasn't only Soundblaster.
anonzzzies 2 days ago [-]
All my friends had Soundblasters; I had a self soldered Covox. Fun times.
abrookewood 1 days ago [-]
Whaaat?? Do tell more!
anonzzzies 1 days ago [-]
For not well off geeks you could just solder a bunch of resistors together and get vastly better sound than from the crappy PC speaker and there were games that supported it and I wrote some software for it (which unfortunately is gone I think). I had a lot of just having this on the pc in the house.
I am very close to emulating the Covox - I emulate the Disney Sound Source, which is just a Covox with a FIFO
sjsdaiuasgdia 1 days ago [-]
[dead]
_flux 2 days ago [-]
But Soundblaster came with Adlib, so surely complete support for SB should mean Adlib support as well.. ?
pjmlp 1 days ago [-]
Yeah and eventually Adlib was gone.
From Wikipedia,
"Not long after its introduction, Creative Labs introduced its competing Sound Blaster card. The Sound Blaster was fully compatible with AdLib's hardware, and it also implemented two key features absent from the AdLib: a PCM audio channel and a game port. With additional features and better marketing, the Sound Blaster quickly overshadowed AdLib as the de facto standard in PC gaming audio. AdLib's slow response, the AdLib Gold, did not sell well enough to sustain the company."
GloriousCow 1 days ago [-]
I haven't implemented the Soundblaster card yet, although it's quite high on my list of things to do.
mancerayder 22 hours ago [-]
Can it integrate with a mobile keyboard if I opened it up on a phone? I'm eager to explore the directory contents quickly on the XT. :-)
GloriousCow 20 hours ago [-]
yes, swipe up to show a keyboard. this currently only supports the 5150/5160 completely as it is a Model F keyboard and the Tandy/Jr have some differences.
wiz21c 1 days ago [-]
besides the fact that it was written in rust, rust happens to be a really nice language to write emulators, you don't have to think much about threading and not much abut memory management, rust makes that easy => you can concentrate on your pixels. Moreover LLM grasp it very well so that you can get a bit more spare time for your emulator-side-project.
It was very long since I wrote any sort of C++ and using rust was pretty refreshing.
Second "besides": marty's PC may not have a lot of breadth in terms of supported hardware, but it gets the accuracy totally right. It's a very special kind of achievement.
(I'm not a rust fanboy :-) I just appreciate the language for writing my emulator)
ranger_danger 2 days ago [-]
Ironically, and unfortunately, this doesn't actually emulate the FM Towns Marty (or even the regular FM Towns PC) like I assumed it would.
handbanana_ 1 days ago [-]
The name is a reference to the 8088 MPH scene demo, it was the first emulator to be able to run it.
rrr_oh_man 2 days ago [-]
Doesn't seem to support non-QWERTY keboards :(
GloriousCow 1 days ago [-]
I've built out a full keyboard-remapping system, to support any keyboard layout. I need help building these files.
Are you using DVORAK? If you are willing to help, please open a Github issue with some info about your keyboard, and I'll build support for it.
rrr_oh_man 1 days ago [-]
Thanks! Done
creatonez 1 days ago [-]
How did DOS era software handle this anyways? I can't imagine it would be fun to be a dvorak typist in the DOS era.
GloriousCow 1 days ago [-]
DOS has the 'keyb' utility and 'keyboard.sys' to support different layouts, using various code pages.
If you have a CGA card, you're stuck with the code page of the ROM your card came with, which in most cases was code page 437, although a few variants were made.
EGA/VGA had software fonts so other code pages could be loaded.
teiferer 2 days ago [-]
But it's written in Rust! Who cares about non-qwerty!
/s
1 days ago [-]
Dwedit 2 days ago [-]
Mysteriously, backslash has been mapped to backspace for some reason.
The naming is terrible and I have to look it up every single time
datakan 1 days ago [-]
I don't think Backspace as a key was standard internationally until 1994. Apple still doesn't use it, just Delete.
Dwedit 1 days ago [-]
This is about early IBM PCs, not apple computers. And the non-working key is the Backslash key \ , not the backspace key.
GloriousCow 1 days ago [-]
What keyboard layout are you using? I can't reproduce on a US layout.
Dwedit 1 days ago [-]
Key is Scancode 0x2B, or as a VKEY code: VK_OEM_5 (0xDC)
Javascript says the key I pressed was keycode 220 (same number as 0xDC) or key "\".
I had Tandy 1000 as the selected machine. When I look at the onscreen keyboard, I don't see a backslash key underneath backspace, but I do see one next to left shift. For keyboards that have the alternate backslash there, it is listed as having a scancode of 0x56 and a VKEY code of VK_OEM_102 (0xE2). (I haven't actually checked information specific to the actual Tandy keyboard)
GloriousCow 1 days ago [-]
Yeah the OSD is only the Model F and the Tandy has some difference so the OSD keyboard may not work quite right with the Tandy.
I have to make all new pixel-art for a Tandy 1000 keyboard and PCjr keyboard. Fun
Dwedit 1 days ago [-]
Not just the OSD keyboard, my real backslash key is also pressing backspace. You can't do your classic DOS commands like "cd\" without a working backspace key.
GloriousCow 20 hours ago [-]
I need to know what keyboard layout you're using. If it is not a standard US keyboard it will need a mapping
Dwedit 18 hours ago [-]
It's a US keyboard (happens to be a laptop). I've already named the scancodes and VK codes in the parent post. Browser is Firefox.
Backslash works fine if you have chosen to emulate the PC or PC XT. For PCJr, no keystroke appears at all (it does not act as backspace). For Tandy 1000, it acts as backspace. You get the same result whether you use the real backslash key or the backslash key from the on-screen keyboard.
GloriousCow 18 hours ago [-]
Thanks. This should be fixed for Tandy 1000 now. On PCjr there is no backslash key, you have to type a backspace using alt + /, so I will need to define a macro that does that for you.
The Tandy 1000 will need its own OSD since the tandy keyboard differs from the Model F in significant ways. You'll notice that if you type shift-backslash on the current model-F based OSD you'll get a 7 instead of the expected |. Because backslash is on numpad 7 on the Tandy.
Dealing with this stuff is tons of fun
unixhero 2 days ago [-]
Old terminals had this shenanigans going on too. Backspace was not backspace and so on
2 days ago [-]
throwaway5727 2 days ago [-]
This comment is itself a meta comment but here we go I guess...How is it possible that half the comments in this thread are about the title itself? It’s not even a made-up title, it’s taken straight from the project’s README...I keep seeing people complaining almost aggressively that others are touting Rust as a useful tool (which, to me personally, it certainly is). Does someone have a financial stake in opposing Rust’s development, or what?
GloriousCow 1 days ago [-]
When I started writing MartyPC over four years ago, writing an emulator in Rust was still somewhat novel. The development of the 'egui' immediate-mode graphics framework made it possible to make one with an advanced interactive debugger.
By mentioning Rust people have been able to more easily find MartyPC as an example of how (or how not to) write an emulator in Rust.
Perhaps the tag as outlived its usefulness, especially if people find it pompous or something. I'm not trying to be Rust cultist, I swear.
tonyedgecombe 1 days ago [-]
I suppose it makes a change from complaining that the post was written by an LLM.
braiamp 1 days ago [-]
But if it's written in rust and with llm then they both implode and we get really insightful comments
2 days ago [-]
saiditmate 1 days ago [-]
[flagged]
taneq 1 days ago [-]
> non-human bots
I’m amused by the implication of human bots.
dmd 1 days ago [-]
No, it's being downvoted because (a) who cares and (b) you wrote a wall of text that makes you look like you have schizophrenia.
suddenlybananas 1 days ago [-]
>murderous ways
What?
13415 1 days ago [-]
Rust's user community is toxic and unbearable. That's enough to explain the widespread resentment against it. Their fanboys are annoying. CommonLisp used to have a similar community problem.
bigstrat2003 1 days ago [-]
Yeah, I love Rust as a language but I engage with the community as little as possible. They are not pleasant to be around. Language is dope though, I really enjoy it.
caspper69 1 days ago [-]
I write Rust code. I don’t mind it. But the truth is, I use very little of the language.
I visit the Discord, and I see all the crazy overcomplicated shit these people are writing.
If I had to try and make heads or tails of some of that shit I’d go crazy.
I actually think some of it is actual trolling by Rust itself.
And yes, the people are toxic. It’s like they really believe C and C++ and everyone else did literally everything wrong. And some of their justifications are seriously weak sauce.
And remember, I like Rust. At least the parts I use. But it’s easily going to eclipse C++ in complexity if it continues the way it has been operating.
Measter 1 days ago [-]
Yup, definitely the Rust users who are toxic. Totally not the people going into every thread about Rust to tell everyone about how toxic Rust users are. Nope.
13415 5 hours ago [-]
> Totally not the people going into every thread about Rust to tell everyone about how...
That's the kind of straw man I was talking about. Aggressive downvoting and being butthurt about the slightest criticism; that's not normal in other communities at all.
pezezin 31 minutes ago [-]
But it is true, you see way more comments complaining about "the toxic Rust community" than said toxic community itself. At some point it just becomes annoying and tiring...
JMiao 2 days ago [-]
probably in the minority but i want the screeching and grumbling hard disk sounds
great emulator and nice guy too. maybe i should ask him if i can use his HDD sounds
GloriousCow 1 days ago [-]
they're planned at some point. I need to write a utility or custom controller rig with a pico that can step the head on an MFM drive in patterns i can record, then model stepping to cylinder in the hard disk controller.
bananaboy 24 hours ago [-]
Now that’s attention to detail!
JMiao 22 hours ago [-]
truly glorious
chvid 2 days ago [-]
Almost usable on an iPhone.
GloriousCow 1 days ago [-]
What would you say is missing or not working well?
kuschkufan 1 days ago [-]
I used to have a phone like that.
teiferer 2 days ago [-]
What does the "written in Rust" contribute to the title, exactly?
2 days ago [-]
benj111 1 days ago [-]
I assume it's called MartyPC because it Marty McFlies?
GloriousCow 1 days ago [-]
It is indeed a Marty McFly reference. The original demo I was trying to run was called 8088 MPH and is full of Back to the Future references.
I was trying to Run Back To The Future, so I figured I'd call my emulator either Marty or McFly.
Unfortunately I found out about the FM Towns later, so I renamed it from Marty to MartyPC so you could google "MartyPC Emulator" properly.
benj111 7 hours ago [-]
Well you can have the tagline for free.
BobMcBob 2 days ago [-]
Yet another avenue to play EGATREK in a browser. For that, its work it.
unixhero 2 days ago [-]
What's great about Egatrek?
EvanAnderson 2 days ago [-]
Oh, holy crap. I haven't thought about EGATREK in at least 30 years. I'm going to go dig it up right now. Thanks for causing me to recall that memory!
gaoheyang 2 days ago [-]
nice
hncsiocp9x 1 days ago [-]
[dead]
azwaterdamagere 2 days ago [-]
[flagged]
szundi 2 days ago [-]
Why never seeing a title “written by C” or Java or js
I believe a true engineer should love problems not only languages. But it seems like majority of Rust devs only love the language and try to convert all the problems into Rust problems.
If you have problems in C/C++? Write Rust.
If you have problems in Python? Use Rust.
If you have an issue with your product? Rewrite it in Rust.
Is your company in pinch? Launch a new product in Rust.
If you burn your finger while you’re cooking? Write Rust.
If you have a mental problem? Read a Rust book.
You don’t have a girl friend? You have Rust next to you.
If you hate yourself? Writing Rust will solve your life problems.
ChickeNES 1 days ago [-]
Because people love to propagandize
tenox7 2 days ago [-]
The main feature of apps written in Rust is that they are written in Rust.
fortran77 2 days ago [-]
I flag all these “written in Rust” posts.
globalnode 2 days ago [-]
its just ppl trying to be different from their boring parents. wish i had enough karma to flag them too but i keep getting downvoted into oblivion for making fun of written in rust posts
GloriousCow 1 days ago [-]
I am not the OP of this post, but they're just using my github description. when I first wrote it, Rust was a novel choice for an emulator, and it helped people find examples of emulators written in Rust.
believe it or not I didn't tailor it for the HN meta
dosisking 2 days ago [-]
"It's not a feature, it's a bug"
teiferer 2 days ago [-]
Because their following is not cult-based.
(To clarify: I like Rust. I use it every day. But this is going too far.)
pjmlp 2 days ago [-]
Because they predate HN, and aren't hip languages any longer.
There was a time for CoffeeScript, PureScript, Elm, Ruby and whatever else you can think of.
Naturally Lisp has to have monthly entries.
/s
imhoguy 2 days ago [-]
Because nowadays "written in Rust" means "written by AI", as Java or C are not so sexy for LLMs /s
ChickeNES 1 days ago [-]
Not really true, I've had LLMs write hundreds of thousands of lines of C just fine, including stripping out Rust deps out of projects I use. :)
tonyhart7 2 days ago [-]
[flagged]
globalnode 2 days ago [-]
the other week i wrote a program in python, and ive been thinking of upgrading my cpp knowledge from v11, wish me luck
rvz 2 days ago [-]
Written in Rust™
Kudos 2 days ago [-]
Not specific to this project, but nowadays when I see "written in rust" I hear "written by Claude".
GloriousCow 1 days ago [-]
When I started this emulator four years ago, this was the first PC emulator written in Rust so it was novel.
I've heard the comments here loud and clear :) You all don't think Rust is novel anymore and I should lose that bit.
binaryturtle 2 days ago [-]
"cross-platform" and Rust, as advertised in the current title/link label, is incompatible for sure. Can't get that to run on my older OS X machine nor my Amiga. :)
ChickeNES 1 days ago [-]
Yup, I have private forks where I've had Claude/Codex rip out Rust for that reason.
GloriousCow 20 hours ago [-]
feel free to fork MartyPC to build it for your Amiga
hnlmorg 2 days ago [-]
Early PCs weren’t written in Rust.
pjmlp 2 days ago [-]
In C neither, despite urban myths.
hnlmorg 2 days ago [-]
Is that something people believe? I can’t say that’s a myth I’ve ever heard.
pjmlp 2 days ago [-]
Yep, before UNIX and C there were no systems programming languages, and after getting the clay tablets from UNIX and C, all civilisation was built upon them. /s
At least when you spend long time around some programming circles.
avadodin 2 days ago [-]
computer, remove the extraneous slash es from the statement.
[0]: https://martypc.blogspot.com/2023/06/hardware-validating-emu...
[1]: https://martypc.blogspot.com/2023/05/exploring-dma-on-ibm-pc...
[2]: https://martypc.blogspot.com/2023/10/bus-sniffing-ibm-5150.h...
It is insane because IBM wanted a wireless keyboard. If you're not familiar with the PCjr keyboard, it has two IR transmitters (they are electrically the same, just having two gives you a better transmission path). The PCjr system has an IR receiver.
Now, a normal keyboard cable is a standard two-wire serial protocol with clock and data. Being wireless, you have no clock, so you have to synchronize clocks, or have clock recovery built into the protocol. The PCjr does the former, using the 8253 timer chip.
The keyboard has no way of knowing if the system has received a keystroke, so the system must receive every keystroke - they can't be stored in a fifo, they can't be resent if the CPU missed it.
This rules out the possibility of using system interrupts - so when you type a key on the CPU and the IR receiver gets the start bit - the NMI line is raised, the 8253 is programmed to time the clock bursts from the IR receiver, and the CPU reads out every bit of the scancode.
In software.
The combination of these two decisions means its inadvisable to type while your floppy drive is transferring data
But honestly I wanted to learn the Rust programming language and I thought writing an emulator was a good a project to learn as any.
I have been working on a emulator in C++ in collaboration with a friend, it is also cycle-accurate. It is called XTCE-Blue.
https://github.com/necroware/silly-sound-bastard
From Wikipedia,
"Not long after its introduction, Creative Labs introduced its competing Sound Blaster card. The Sound Blaster was fully compatible with AdLib's hardware, and it also implemented two key features absent from the AdLib: a PCM audio channel and a game port. With additional features and better marketing, the Sound Blaster quickly overshadowed AdLib as the de facto standard in PC gaming audio. AdLib's slow response, the AdLib Gold, did not sell well enough to sustain the company."
It was very long since I wrote any sort of C++ and using rust was pretty refreshing.
Second "besides": marty's PC may not have a lot of breadth in terms of supported hardware, but it gets the accuracy totally right. It's a very special kind of achievement.
(I'm not a rust fanboy :-) I just appreciate the language for writing my emulator)
Are you using DVORAK? If you are willing to help, please open a Github issue with some info about your keyboard, and I'll build support for it.
If you have a CGA card, you're stuck with the code page of the ROM your card came with, which in most cases was code page 437, although a few variants were made.
EGA/VGA had software fonts so other code pages could be loaded.
/s
[1] Physical location of a key https://w3c.github.io/uievents/#keys-codevalues
[2] Mapping of a key https://w3c.github.io/uievents/#keys-keyvalues
The naming is terrible and I have to look it up every single time
Javascript says the key I pressed was keycode 220 (same number as 0xDC) or key "\".
I had Tandy 1000 as the selected machine. When I look at the onscreen keyboard, I don't see a backslash key underneath backspace, but I do see one next to left shift. For keyboards that have the alternate backslash there, it is listed as having a scancode of 0x56 and a VKEY code of VK_OEM_102 (0xE2). (I haven't actually checked information specific to the actual Tandy keyboard)
I have to make all new pixel-art for a Tandy 1000 keyboard and PCjr keyboard. Fun
Backslash works fine if you have chosen to emulate the PC or PC XT. For PCJr, no keystroke appears at all (it does not act as backspace). For Tandy 1000, it acts as backspace. You get the same result whether you use the real backslash key or the backslash key from the on-screen keyboard.
The Tandy 1000 will need its own OSD since the tandy keyboard differs from the Model F in significant ways. You'll notice that if you type shift-backslash on the current model-F based OSD you'll get a 7 instead of the expected |. Because backslash is on numpad 7 on the Tandy.
Dealing with this stuff is tons of fun
By mentioning Rust people have been able to more easily find MartyPC as an example of how (or how not to) write an emulator in Rust.
Perhaps the tag as outlived its usefulness, especially if people find it pompous or something. I'm not trying to be Rust cultist, I swear.
I’m amused by the implication of human bots.
What?
I visit the Discord, and I see all the crazy overcomplicated shit these people are writing.
If I had to try and make heads or tails of some of that shit I’d go crazy.
I actually think some of it is actual trolling by Rust itself.
And yes, the people are toxic. It’s like they really believe C and C++ and everyone else did literally everything wrong. And some of their justifications are seriously weak sauce.
And remember, I like Rust. At least the parts I use. But it’s easily going to eclipse C++ in complexity if it continues the way it has been operating.
That's the kind of straw man I was talking about. Aggressive downvoting and being butthurt about the slightest criticism; that's not normal in other communities at all.
I was trying to Run Back To The Future, so I figured I'd call my emulator either Marty or McFly.
Unfortunately I found out about the FM Towns later, so I renamed it from Marty to MartyPC so you could google "MartyPC Emulator" properly.
but I see your point.
If you have problems in C/C++? Write Rust.
If you have problems in Python? Use Rust.
If you have an issue with your product? Rewrite it in Rust.
Is your company in pinch? Launch a new product in Rust.
If you burn your finger while you’re cooking? Write Rust.
If you have a mental problem? Read a Rust book.
You don’t have a girl friend? You have Rust next to you.
If you hate yourself? Writing Rust will solve your life problems.
believe it or not I didn't tailor it for the HN meta
(To clarify: I like Rust. I use it every day. But this is going too far.)
There was a time for CoffeeScript, PureScript, Elm, Ruby and whatever else you can think of.
Naturally Lisp has to have monthly entries.
/s
I've heard the comments here loud and clear :) You all don't think Rust is novel anymore and I should lose that bit.
At least when you spend long time around some programming circles.