Can MS-DOS Run on a New Modern PC 2024?

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 ม.ค. 2023
  • Recommend WPS Office-Best FREE office software, support Windows 7/8/9/10/11
    Free Download link bit.ly/3sRQuXl
    MiniTool® Data Recovery Software Free bit.ly/3VQWtaL
    Here is my PC specs:
    🖥️Monitor: LG UltraGear 27GL850-B amzn.to/3YKp4hu
    🖥️CPU: Intel Core i9-9900K amzn.to/43ZHdu3
    🖥️Motherboard: MSI Z390 Gaming EDGE AC amzn.to/41MKjjD
    🖥️GPU: NVIDIA GTX 1080 8Gb amzn.to/3LnUiWA
    🖥️RAM: 32 GB(2x16GB) Kingston HyperX 3466Mhz amzn.to/3N7ditD
    🖥️Storage: Samsung EVO 970 Plus 1Tb amzn.to/3H7gRMB
    📀Download XMGR drive.google.com/file/d/1OUGk...
    📀Download Win32 Disk Imager sourceforge.net/projects/win3...
    📀Download FreeDOS (or just use RUFUS) www.freedos.org/
    #msdosgames #modernpc #z390 #i99900k #msiz390gamingedgeac #newpc #Microsoft #ramtecheng #ramtech #cyberadvisor #windows
    Can MS-DOS Run on a New Modern PC 2023?
    Today in this video I’ll try to find out is it possible to install MS-DOS on a modern hardware in 2023. Enjoy
    🎵Background music from «CO.AG Music» / @co.agmusic
    🎥Main channel / ramtecheng
    🎥Game channel / @ramtechgaming
    🎥Can MS-DOS Run on a New Modern PC 2023? • Can MS-DOS Run on a Ne...
    🎥Can Windows 98 Run on a New Modern PC 2023? • Can Windows 98 Run on ...
    🎥Can Windows XP Run on a New Modern PC 2023? • Can Windows XP Run on ...
    🎥Can Windows 11 run on Pentium II Old PC 1998? • Can Windows 11 run on ...
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 346

  • @RamtechENG
    @RamtechENG  6 หลายเดือนก่อน +4

    Recommend WPS Office-Best FREE office software, support Windows 7/8/9/10/11
    Free Download link bit.ly/3sRQuXl

  • @shaunclarke94
    @shaunclarke94 ปีที่แล้ว +169

    The latest official release of MS-DOS is 6.22.
    What you have here is an unofficial build from a newer version ripped from Windows 9x builds.
    And you are correct, the BIOS is emulating the keyboard, mouse and storage.
    Without emulation nothing would work.

    • @InvisibleYetVisible
      @InvisibleYetVisible ปีที่แล้ว +3

      you sound like the fun at any party Shaun

    • @shaunclarke94
      @shaunclarke94 ปีที่แล้ว +34

      @@InvisibleYetVisible you judge how I am at a party based on a technical comment I made on a technical video?
      Okay 🤷‍♂️.

    • @InvisibleYetVisible
      @InvisibleYetVisible ปีที่แล้ว +3

      @@shaunclarke94 but it's obviously a fairly loose entertainment video. Who goes around correcting people on videos like this?

    • @extradipboneless
      @extradipboneless ปีที่แล้ว +24

      Thank you for informative comment, Shaun! At least I learned something valuable - unlike the dudes other comment. I'd party with you with a MS-DOS drinking game. :-)

    • @CatManDoom84
      @CatManDoom84 ปีที่แล้ว +2

      @@InvisibleYetVisible The same who take the time to reply to said comment on a video like this ;P (im sure ur initial comment was in fun/sarcastic haha) the whole vid i pretty moot haha. cool it was tested but not practical with official or unofficial. If ur that harcore to play on dos just buy an old computer.Not to mention DOSBOX is a thing hah.

  • @RamtechENG
    @RamtechENG  ปีที่แล้ว +103

    Do you ever use MS-DOS? P.S. I made a mistake. 7.1 is not the latest version and not official. The latest official version is 6.22. Wikipedia misled me. Also may you notice a grammar error at 3:51 “Congulations”

    • @aesth_88
      @aesth_88 ปีที่แล้ว

      Naah

    • @arnolddergamer9668
      @arnolddergamer9668 ปีที่แล้ว

      no

    • @geofftottenperthcoys9944
      @geofftottenperthcoys9944 ปีที่แล้ว

      Not for a long time.

    • @techdudesca
      @techdudesca ปีที่แล้ว +5

      Yes, I'm old enough unfortunately to have used and WORK with almost all versions of ms-dos, from 1.25 through 6.22. I installed it in hyperv, only for fun. it's working. I wanted to install windows 3.11, but I'm having an hard time to have mouse working.

    • @amss1976
      @amss1976 ปีที่แล้ว

      Yes I did

  • @alexanrsousa
    @alexanrsousa ปีที่แล้ว +25

    In all fairness, getting "Out of memory" errors is part of normal DOS operation and very common with period-correct DOS machines. Real mode DOS programs are restricted to conventional memory, which is the first 640KB of RAM, and most drivers are also loaded there by default. This is why newer games worked, as they are protected mode (32-bit) software and are able to use extended memory. Just like back in the day, setting up an MS-DOS machine requires a lot of memory management tweaking to free up as much conventional memory as possible.
    The first common trick HIMEM.SYS (and most XMS memory managers) tries is to use some trickery to load part of the system in HMA (which is a region of memory just above the first megabyte). For compatibility with the original PC, real-mode segment+offset addresses that cross the 1MB boundary wrap arout to the beggining of the memory, but that can be disabled on demand, allowing an extra 64kb of RAM to be use. According to the startup messages HIMEM.SYS was failing to enable that, you might've had more luck with XMGR.SYS.
    The other trick are UMBs (upper memory blocks). Normally conventional memory is restricted to 640KB, followed by a 384KB addressing space reserved to be mapped to hardware devices (like video ram). EMM386.EXE (and some other memory managers) can scan the upper memory area, find address ranges that are not used by any hardware, and map regular RAM there. DOS can then move parts of itself and load some drivers there, freeing up portions of conventional memory. Since enabling UMBs in DOS setup prevented it from booting, we can assume EMM386.EXE has compatibility issues with newer machines. Using JemmEx (the same memory manager FreeDOS uses by default) could remedy that.
    One other thing is that your unnoficial distribution of MS-DOS 7.1 loads DOSLFN by default. That can cause some software to believe they are running inside Windows (as DOS isn't supposed to support long file names). This is what probably prevented AIDA16 from running.
    FreeDOS ships with more modern memory managers, both HMA and UMBs are enabled and working normally and it loads very few drivers by default, so you were getting 618kb of memory out of the box. Sadly I did not see a "mem" output from your MS-DOS install, but it was probably below 520KB, as Duke Nukem didn't work.

    • @surfinbirdzx
      @surfinbirdzx ปีที่แล้ว +2

      QEmm is the king. It configures your memory usage automatically during setup and giving you biggest amount of conventional memory possible. When I've installed it for the first time it was like magic:)

  • @ruadeil_zabelin
    @ruadeil_zabelin ปีที่แล้ว +109

    One thing to mention is that motherboards that only suport EFI booting are coming out now. As soon as legacy booting is removed completely; you will not be able to use dos anymore at all on these machines. There are already some laptops out there that can't run dos because of this.

    • @kreuner11
      @kreuner11 ปีที่แล้ว +22

      I'm quite sure an bootloader can still be made to emulate a bios

    • @ruadeil_zabelin
      @ruadeil_zabelin ปีที่แล้ว +18

      @@kreuner11 I'm not sure... maybe. It would require to go back out of protected mode into real mode and emulating all the bios calls and oddities that come with it. Freedos has stated that if such a day will come they might support EFI instead, which might be easier... but until then they will not. There is an experimental project for 32-bit dos that aims to be fully compatible with normal dos; they're waiting for the results of that experiment also.

    • @maxmuster7003
      @maxmuster7003 ปีที่แล้ว +3

      @@ruadeil_zabelin It think we can switch from 64 bit mode into the 32 bit mode to enable the virtual x86 mode for a DOS emulation like BOCHS or DosBox. We need an IBM compatible BIOS (to control drives) and a VGA Bios(VBE 2/VBE 3) both with 16 bit routines and software interrupts for DOS.

    • @maxmuster7003
      @maxmuster7003 ปีที่แล้ว +9

      The only one difference between the 32 bit mode and the 16 bit mode on 80386 CPU is the usage of the address size prefix and the operand size prefix.
      The address size prefix and the operand size prefix are changing the address size and operand size for only one instruction.
      The prefix can be used in the 16 bit mode (Real address mode, 16 bit virtual mode or 16 bit protected mode) and in the 32 bit mode. In 16 bit mode the default size is 16 bit and with the size prefix 32 bit. In 32 bit mode the default size is 32 bit and with a size prefix 16 bit.
      In the 16 bit protected mode we can have a segment size of 4 gb on 80386 CPU using the address size prefix.
      For DOS we can use the 16 bit Big Real mode with a segment size of 4 gb for DS,ES,FS,GS register, but for CS code and SS stack segment 64 kb size like in the 16 bit Real Address mode. Himem.sys use this mode. The 16 bit Big Real mode is not documented and not publised on intel developer manuals.

    • @maxmuster7003
      @maxmuster7003 ปีที่แล้ว +1

      @@ruadeil_zabelin For a 32 bit Unreal Mode for DOS we need 32 bit BIOS routines for drives and for graphic.

  • @EyMannMachHin
    @EyMannMachHin ปีที่แล้ว +86

    The out of memory issue is probably mostly because you were not using a memory manager and didn't load system and drivers into high memory. Games like Wing Commander need nearly 600KB of the 640KB base memory. I remember having about 4-5 config.sys and autoexec.bat configurations to be able to play everything I could throw at my PC. The most I got was like 612KB free memory but that had nothing more loaded than DOS itself, keyboard, mouse and soundcard initialisation. None of the extras that would make a DOS environment more comfortable. Fun times!

    • @WoodUCreate
      @WoodUCreate ปีที่แล้ว +4

      QEMM was a great memory manager. You could get over 700KB with that. It would use hidden memory or video memory, something like that for another 64k

    • @TheBerk01
      @TheBerk01 ปีที่แล้ว +3

      Just thinking something the same. If he could type "mem /c" at the prompt we'd probably see some interesting stuff

    • @CatManDoom84
      @CatManDoom84 ปีที่แล้ว +1

      600kb? 🤯 hehehe

    • @lucasRem-ku6eb
      @lucasRem-ku6eb ปีที่แล้ว +1

      IBM PC is 612 max to allocate, Extended or expanded memory is not supported by the system itself.
      You need to write procedures to it to allocate the higher memory !
      Windows solved that issue in 1995

    • @lucasRem-ku6eb
      @lucasRem-ku6eb ปีที่แล้ว

      @@WoodUCreate PC was just too nerdy ! Arcades were still open...
      Why you needed Qemm, running what ? just change your Config sys was enough. HIGH MEM =

  • @ruffy45
    @ruffy45 ปีที่แล้ว +7

    Oh my gosh! this channel is great! should have at least 1 million subscribers a long time ago! please don't stop!

  • @geraslb16
    @geraslb16 ปีที่แล้ว +4

    Love your content, thanks!!

  • @minotaurbison
    @minotaurbison ปีที่แล้ว +2

    nice job! I use PCem to emulate my old pc from the late 90's. So far I haven't found anything I can't run on it. Not as cool as getting dos to work on modern hardware, but perhaps more functional and with full sound support, unlike other virtual pc programs.

  • @HailAnts
    @HailAnts 7 หลายเดือนก่อน +1

    Been a PC tech guy since DOS 3.3. Neatest thing I'm seeing here is that DOS 7 has a startup logo!

  • @christoney2491
    @christoney2491 ปีที่แล้ว +2

    Seeing those games again made me smile! Thank you!

  • @jeffyp2483
    @jeffyp2483 ปีที่แล้ว +29

    I think the green flickering is due to non SVGA compliance in the video bios. i bet something like sci-tech display doctor would fix that. i cant remember the name of it, but i recall some programs (mostly games) coming with some basic SVGA driver that was developed using DD code.

  • @Alexifeu
    @Alexifeu ปีที่แล้ว +2

    luv ur channel subed

  • @AleksRomero
    @AleksRomero ปีที่แล้ว +1

    Amazing channel, Bro! Thanks!
    of course i used DOS for a long time!
    Do you remenber Warcraft Orcs & Humans?

  • @bittertruth6175
    @bittertruth6175 ปีที่แล้ว +1

    Very impressive and out of box thinking. Great!

  • @darkfalzx
    @darkfalzx ปีที่แล้ว +15

    Getting the sound to work is also somewhat possible if you either get lucky and your sound hardware has a compatible driver, or you get a PCI SoundBlaster card. Using DosBox is still far more convenient.

    • @Otto500206
      @Otto500206 3 หลายเดือนก่อน

      Or 86Box

  • @austingrace1
    @austingrace1 ปีที่แล้ว

    Awesome videos man. :)

  • @the1ucidone
    @the1ucidone ปีที่แล้ว +1

    So enjoyable!

  • @umerehsan6677
    @umerehsan6677 ปีที่แล้ว +2

    Great work

  • @kzadbhat555
    @kzadbhat555 ปีที่แล้ว +2

    If you set your BIOS to legacy mode for storage, that should actually be IDE mode. Though that is also your BIOS sort of emulating an older system, or at least providing translation for older OSes.

  • @dolphhandcreme
    @dolphhandcreme ปีที่แล้ว +5

    DOS is using Bios int13 access to disk drives, so it doesn't care what settings you use in your bios (sata, ide, raid, ahci)...

  • @josefmazzeo6628
    @josefmazzeo6628 ปีที่แล้ว

    Wolfenstein 3D was like the first 3D game I played on a 1990s era 386 PC back in 1993. I got a pirated copy from a street vendor. Then, a year or so later got into Doom and was addicted to the point of sneaking in some time at my job at the time. I recall getting a cheat guide in the bookstore for both games - internet as we know it today did not exist. Also, there is no support for multicore in MSDOS, right?

  • @Comp286
    @Comp286 ปีที่แล้ว +4

    Can you try Windows NT4/2000? Old NT Kernel-Based Windows don't seem to work well with BIOS emulation in Modern UEFI.

  • @conza1989
    @conza1989 ปีที่แล้ว +1

    I am pretty sure, pretty sure this is the second time I've subscribed, really enjoyed Win98 and this video, let's see if you can get 5k likes, 855 as I comment this.
    MS-DOS was my first operating system when I was a child, and I continued to use DOS even while Windows as installed, as we did of course, some games were only available in DOS or maybe better in DOS it's so long ago I'm not sure.
    DIR FTW.

  • @Nas_Allie
    @Nas_Allie ปีที่แล้ว +3

    True legend of course with the Half Life Shortcut on the desktop 😎

  • @immersionzone5294
    @immersionzone5294 ปีที่แล้ว

    Back in the day I had to run an included expanded memory utility to get some of those games to work. Just type in memaker at c: prompt, if I remember correctly. I also remember some of those games really required a soundcard to work nicely, kind of like video cards today. Wondering if one of those cheep USB SoundBlaster cards would work in DOS? One worked for me in XP playing win 98 games.

  • @3dfxvoodoocards6
    @3dfxvoodoocards6 ปีที่แล้ว

    Interesting, like!

  • @charleshines7282
    @charleshines7282 ปีที่แล้ว +3

    Imagine having 128 GB of RAM and only being able to use the first 640 KB LOL!!

  • @gamerk316
    @gamerk316 ปีที่แล้ว +5

    I'd imagine the biggest issues with running DOS natively is the amount of things expecting EMS/XMS memory which no longer exists; I expect that's the cause of the Out of Memory errors. There's probably ways to get around that by messing with various config files. I'm guessing FreeDos and other DOS emulators fake this since we obviously have enough RAM in modern PCs.
    As for actually "running" the core OS, I'm not shocked it ran fine. All x86 CPUs support the "real" operating mode DOS requires to this very day, so there isn't any specific HW reason why modern CPUs can't run DOS natively.

  • @M3MB3Rrr
    @M3MB3Rrr ปีที่แล้ว

    I used DR DOS 7 on my Ryzen PC and it boots with no problem (I installed Win 3.1 as well, installation was completed, but it died). My Pentium 3 does also have DR DOS installed. In my experience, if you are using a CLI operating system, it will operate fine, but from Win 95 and above, something will crash in most cases.
    Also, you can add a parallel port sound card or your PC like I do.

  • @the_kombinator
    @the_kombinator ปีที่แล้ว +1

    Why didn't you run mem/c to see what was going on in there? Or use Memmaker to get some of that base RAM optimized?

  • @otakubullfrog1665
    @otakubullfrog1665 ปีที่แล้ว +2

    You can always use QBASIC to write your own DOS games (you might have to do the full install rather than commands only) or see if you can install and run Borland Turbo C/C++ if you need more firepower and want compiled executables.

    • @surfinbirdzx
      @surfinbirdzx ปีที่แล้ว +2

      Turbo Pascal also great. It have a lot of libraries dedicated to game development. Easy usage of tilesets, sprites, sound etc.

    • @strayferal
      @strayferal ปีที่แล้ว +2

      He could use Turbo Pascal too. But for the best - assembler only

  • @BUDA20
    @BUDA20 ปีที่แล้ว

    one thing about FreeDOS, in general it has some compatibility issues and slowdowns in places where MSDOS works fine, like the long loading time of DOOM, so is a mix match of results for different memory drivers and video

    • @derekfrost8991
      @derekfrost8991 5 หลายเดือนก่อน

      Freedos is better for utilities, DosBox is for games.. 🙂

  • @themusesquad8554
    @themusesquad8554 ปีที่แล้ว +3

    U need to enable UMB and Loadigh the devices into the config system and autoexec.
    That way ull have more memory I. The 640k base ram.

  • @RGOdenJr
    @RGOdenJr 2 หลายเดือนก่อน +2

    Wonder if MSDOS 6.22 would work on an up to date system.?

  • @tonepilot
    @tonepilot ปีที่แล้ว

    This brings back memories.

  • @Vildaval
    @Vildaval ปีที่แล้ว

    Yes, me first pc 486dx4 100mhz and play dune2, Xcom-apocalypse. Now use Dosbox and playing this game today:-)

  • @squirrelsinjacket1804
    @squirrelsinjacket1804 ปีที่แล้ว +1

    The nostalgia is real

  • @louisbaiani6262
    @louisbaiani6262 ปีที่แล้ว

    You should try loading EMM386 and what not for some games

  • @gamagama69
    @gamagama69 ปีที่แล้ว

    4:43 apparently modern internal sound cards have hardware midi functions so you might be able to get good audio with those

    • @xan1242
      @xan1242 ปีที่แล้ว +1

      This isn't the case, unfortunately. Basically all audio chips on boards since mid 2000s do not have a hardware MIDI synth, and most boards since then don't even ship with a MIDI+gameport port either.
      You _can_ use a PCI card with a PCIe bridge. ESS AudioDrive or even CMI8738 could work out (CMI8738 I can confirm that OPL works in latest Windows and Linux and in Adlib Tracker 2 in native DOS).

  • @jeffjenner5030
    @jeffjenner5030 ปีที่แล้ว +5

    With commander keen you may not had enough of the 640k free (was a common problem back then). dont know how you would fix it now , we used to load the mouse and maybe cd into the memory between 640k and 1m.

    • @jeffyp2483
      @jeffyp2483 ปีที่แล้ว +1

      thats what i was thinking. i think if you could get memmaker.exe (and any additional files it needs to operate; shoukd only be 3 or 4 at most iirc) on the dos boot volume, you could run it and it may free enough conventional memory to run those applications. 386max is an alternative to emm386.exe. maybe it can be found somewhere...

    • @jeffjenner5030
      @jeffjenner5030 ปีที่แล้ว

      @@jeffyp2483 Um I was thinking about the loadhigh command . I know dos 5 and 6 support it , not sure about dos 7.

    • @jeffyp2483
      @jeffyp2483 ปีที่แล้ว

      @@jeffjenner5030 good first name btw😉

  • @10percent4DaBigGuy
    @10percent4DaBigGuy 6 หลายเดือนก่อน +1

    that is crazy i didn't think it was possible to install dos on 2020 chipsets

  • @outdoor_spirituality
    @outdoor_spirituality 27 วันที่ผ่านมา

    I have a laptop that I bought in Japan years ago (2014?) - (2 graphic cards, 32gb memory etc...) at the time it was one of the best laptops you could buy (quite expensive too) I removed Windows 8.1 and installed Windows 7 (don't remember why I did it), now I have a game called Settlers 2 - (1996) and it actually starts by going to ms-dos and then running the game.

  • @psilimit
    @psilimit ปีที่แล้ว +6

    Well, not setting up himem.sys will sure limit your dos experience.

  • @andydelle4509
    @andydelle4509 7 หลายเดือนก่อน

    Well the version of DOS I have is IBM PC DOS 7.0. which I believe is equivalent to MS DOS 6.22. I have run it on some later model surplus high end machines, like dual 3G Xeon processor boards. Runs fine. I have several graphical embedded applications built on Boreland C using a third party SVGA driver. Why still DOS? Again these are embedded systems that are a bit too complex for a simple micro controller. Fast boot and DOS is far less likely to randomly crash than any Windows distro. Many industrial control systems still use DOS for these reasons. Security concerns? I have the best security you can get! The networking is not TCP/IP based (will not even support any Internet access) and there are no disk drives exposed. And no working USB ports either which DOS does not even directly support.

  • @summer20105707
    @summer20105707 3 หลายเดือนก่อน

    There is a reason they were called IBM pc compatibles. They were meant to be backwards compatible with older systems to a certain extent.

  • @jackilynpyzocha662
    @jackilynpyzocha662 4 หลายเดือนก่อน

    I would like to see Tandy(Radio Shack's) GUI: Desk Mate run on a recent system! It is unlikely since the 3.69 version was proprietary to Tandy.

  • @umerehsan6677
    @umerehsan6677 ปีที่แล้ว +2

    I didn't see any content like yours. I think you will set a trend that many other channels will follow. But the real will only be you.

  • @tutacat
    @tutacat 3 หลายเดือนก่อน

    You need a high memory driver to use more memory in 16-bit mode.

  • @TeionM83
    @TeionM83 ปีที่แล้ว +1

    You're using MS-DOS 7.10. It has many built-in features that were not present in MS-DOS 6.22, such as USB or MSCDEX drivers.
    Also, you could've used the native FDISK to partition the drive.

    • @TeionM83
      @TeionM83 ปีที่แล้ว

      @@universoencantado336 You replied to wrong person. I don't really make videos, although I may have one planned. (maybe)

  • @Metalliferous
    @Metalliferous ปีที่แล้ว

    Sound is the biggest issue I guess. There are almost no motherboards sold with regular PCI slots(not PCI-e). How did you get the sound in Prince of Persia to work (since you don't have an Adlib/SoundBlaster)?

    • @looks-suspicious
      @looks-suspicious ปีที่แล้ว +1

      He did not get sound to work, it's not possible (except for the PC speaker). The intro segments for Blood and Prince of Persia were taken from another source (note the odd icons in the bottom right during the PoP intro).

    • @adrianandrews2254
      @adrianandrews2254 หลายเดือนก่อน

      PCI-E to PCI adapters are cheap on ebay.

  • @MegaGeorge1948
    @MegaGeorge1948 13 วันที่ผ่านมา

    Save your self the trouble. Use freeware DOSbox 0.74. This is a MSDOS emulator that can even run on Windows 11. It uses all of the original DOS commands and comes with instructions as to how to mount virtual drives with your DOS software in them. I can run old Duke Nukem 1.0, the original Wolfenstein, etc.

  • @billj5645
    @billj5645 ปีที่แล้ว +2

    As you discovered- peripherals such as sound cards and mouse drivers can be a problem, as well as disk format. MS-DOS was made before USB so the mouse was typically a PS/2 or serial port device. MS-DOS relied on functions built into the BIOS, functions that are not used by Windows, so I wondered if they were still present in modern computers since they haven't been needed in so long. I don't understand why you were getting memory errors, programs running under MS-DOS typically used extended memory memory if they had to go beyond 640k and this should still be available if you have loaded the appropriate drivers. I wonder if there is something else being loaded in the lower 640k of memory that is using too much of it, of if the BIOS of modern computers somehow maps into some of the extended memory that the old programs expect to be free.
    (I still have a computer in my closet that boots into MS-DOS 5.)

    • @PAPERMAsster
      @PAPERMAsster ปีที่แล้ว

      I think those features are still used by various pre-boot environments like bootloaders and other similar prompts (like grub uses the bios keyboard driver for interacting with the menu)

    • @Reth_Hard
      @Reth_Hard ปีที่แล้ว

      I already knew it was going to work but I find it crazy that our 64 bit CPU is still compatible with DOS after all these years.
      I'm pretty sure all the games that didn't work because of "not enough memory" can be fixed by patching one or two bytes in the executable.

  • @ytucharliesierra
    @ytucharliesierra ปีที่แล้ว

    I like how you cut to the chase. Some content creators can take 3x the time to make the same point.

  • @BUDA20
    @BUDA20 ปีที่แล้ว

    I saw in other similar videos that AMD (microcode/BIOS) is more compatible with old OSs like MSDOS and Windows 3.11 / 9x

  • @philmarsh7723
    @philmarsh7723 ปีที่แล้ว

    I wondering if MS DOS is running entirely in L1 and/or L2 CPU cashe without even going to RAM?

  • @Odolwa2
    @Odolwa2 ปีที่แล้ว

    got dos 6.22 running, but some games don't appear on screen. sierra games like laura bow, i can hear the music, but it's still on dos prompt. i used install, got through it, but if i try to run install again, it says packed file is corrupt. weird...

  • @TecHouseInternet
    @TecHouseInternet 3 หลายเดือนก่อน

    very good

  • @DragonProtector
    @DragonProtector ปีที่แล้ว

    neat!

  • @davyarthurs
    @davyarthurs ปีที่แล้ว +1

    Congrulations? (3:51) Don't they mean Congratulations 😛Either way, congratulations for getting it working!

    • @RamtechENG
      @RamtechENG  ปีที่แล้ว

      Omg. I didn’t notice that. I made a mistake, 7.1 version is not the last and not official, the last is 6.22. Wikipedia misled me. Sorry :)

    • @davyarthurs
      @davyarthurs ปีที่แล้ว +1

      @@RamtechENG no worries :-) Good job anyway 🙂

    • @RamtechENG
      @RamtechENG  ปีที่แล้ว +1

      @@davyarthurs thank you!

  • @ghost_rider465
    @ghost_rider465 9 หลายเดือนก่อน +1

    Can you try quake? Because there is a file which only dos can open it

  • @sargisgrigoryan8779
    @sargisgrigoryan8779 2 วันที่ผ่านมา

    Не знал про English Channel !! Ramtech !!!

  • @stevesybesma
    @stevesybesma ปีที่แล้ว +1

    The key question I have for you based on this being a modern PC from this year, is whether this PC is UEFI-only BIOS (no option for Legacy BIOS). That should not be possible but if it is, I'm greatly interested.

    • @RamtechENG
      @RamtechENG  ปีที่แล้ว

      Is there is no legacy boot option, it won’t boot 100% unfortunately. I mean if you will choose UEFI usb stick in boot menu, then nothing happens.

  • @kennethnash598
    @kennethnash598 ปีที่แล้ว

    with dos you had to load your high programs in correct order to get enough memory.

  • @user-ci8op9dv3n
    @user-ci8op9dv3n ปีที่แล้ว +1

    Tutorial for Windows 7, please..?

  • @rodhester2166
    @rodhester2166 ปีที่แล้ว

    I have a machine with win98, xp, 7 and 10 on it.. granted w10 was unusable because it was so slow. , 7 was not much fun either but usable.

    • @strayferal
      @strayferal ปีที่แล้ว

      true. xp and 7 were much more usable. back in the past i used a lot ME which most people hated, but it was working fine with me

  • @maxmuster7003
    @maxmuster7003 ปีที่แล้ว +1

    MS DOS need an ibm compatible bios.

  • @RomanBaeriswyl
    @RomanBaeriswyl ปีที่แล้ว +1

    Congrulations!
    @ 3:51

  • @monad_tcp
    @monad_tcp ปีที่แล้ว

    Legacy Mode in the BIOS means IDE.

  • @mOddEdLiKeHeLL
    @mOddEdLiKeHeLL ปีที่แล้ว +1

    I would of just made a MS-DOS boot disk and copied over the files over to a fat32 formated HDD using the /s command to have it boot. Then copied over the CD and mouse driver from PhilsComputerLab setup, and his memory config startup menu. Then install all games and play

    • @the_kombinator
      @the_kombinator ปีที่แล้ว

      Yeah it's not a very thorough video TBH.

  • @coolers.4704
    @coolers.4704 ปีที่แล้ว +3

    You should try something that might provide some real results like vista or 7

    • @coolers.4704
      @coolers.4704 ปีที่แล้ว

      Maybe even an unreleased build

    • @himmelskibet
      @himmelskibet ปีที่แล้ว

      I still use 7 as a daily driver

  • @ruisantos4520
    @ruisantos4520 ปีที่แล้ว

    Good morning, I would like to know if I can do this in a Windows 11 machine or Windows 10 machine ? I do not want to run games but my old MSDos Cobol software

    • @RamtechENG
      @RamtechENG  ปีที่แล้ว

      I think better to use DOS-BOX for this

    • @ruisantos4520
      @ruisantos4520 ปีที่แล้ว

      @@RamtechENG Tks a lot

  • @samfkt
    @samfkt ปีที่แล้ว

    READ THIS: You have a option in bios/UEFI to activate "legacy" option for your Mouse, that way your mouse would work even if you dont have drivers and the like..... search it up.

  • @JanuszKrysztofiak
    @JanuszKrysztofiak 29 วันที่ผ่านมา

    Ah, old, bad days of twaking autoexec.bat and config.sys to move as much stuff as possible outside of the conventional memory. Real-mode games often required more than 550 kB free. It became better in the later period, when games and apps used the "DOS-extender" hack to run themselves in a protected mode, with flat 32-bit memory model accessing many megabytes of RAM.

  • @Auberge79
    @Auberge79 ปีที่แล้ว

    Hey, where's DIGGER, Dune 2 and Arkanoid?

  • @pebear
    @pebear ปีที่แล้ว

    Windows 1 didn't even work on PC's back in the day. I would maybe try Windows 286 or Windows 386 (prob 386) see how that goes.

  • @the_kombinator
    @the_kombinator ปีที่แล้ว

    The MBR means Master Boot Record, it's not a file system. You need to make a FAT16 partition.

    • @adrianandrews2254
      @adrianandrews2254 หลายเดือนก่อน

      Yes indeed, but you still need an MBR. I have an MBR on an 14TB GPT partitioned disk and use INT19 to boot MS-DOS 7.1 from a FAT16 partition on the drive. I dual boot with Windows 10 Pro, on the same disk. I'm using a supermicro X9DAi workstation motherboard.

  • @UltimatePerfection
    @UltimatePerfection ปีที่แล้ว +5

    You should try running computer viruses in environments they weren't designed for, such as DOS viruses on Win9x (or even 32bit Vista/7/8 that still can run DOS software) or Win9x viruses on NT-based systems.
    Might provide for some interesting videos.

    • @3rdalbum
      @3rdalbum ปีที่แล้ว

      I've seen videos on this topic elsewhere, but it's hardly riveting stuff as they rarely do anything.

    • @josefmazzeo6628
      @josefmazzeo6628 ปีที่แล้ว

      Does the Pakistani Brain infect windows 11 :)))

  • @adamgalambos8137
    @adamgalambos8137 ปีที่แล้ว

    Windows 95 98 was a dos based graphic surface... From 2000 me xp Windows was in the nt family which is a new os, not using dos, so technically you use dos

  • @Planet27631
    @Planet27631 หลายเดือนก่อน

    This is an unofficial bulid. Chance is they added driver

  • @danielberrett2179
    @danielberrett2179 ปีที่แล้ว +1

    I think I have the exact same Monitor and Keyboard. lol.

  • @Slawek361
    @Slawek361 ปีที่แล้ว +2

    4:30 - MS-Dust.. Thanks YT Trainslator.. Okay xD

  • @JaymeEduardo
    @JaymeEduardo ปีที่แล้ว

    you gotta install loebs patch to memory or limit memory to 512mb

  • @WsCoronaveVandal
    @WsCoronaveVandal 4 หลายเดือนก่อน +1

    Classic MSDOS computer stocks are rising ..

  • @spookyboo3164
    @spookyboo3164 ปีที่แล้ว

    wolfstein 3D that was a great game

  • @michaeldonoghue9015
    @michaeldonoghue9015 ปีที่แล้ว

    I’m using the DOS version of TH-cam right now.

  • @kght222
    @kght222 ปีที่แล้ว

    when you are short of memory you are running xms i bet. that is why we used to use boot disks to run games even if our system had enough memory. throw a pci soundblaster at it and use a bootdisk that doesn't turn xms on and it will probably work. a good test would be ultima 7. it has it's own memory manager and does not work with xms on. most sound cards after 1998 or so are soundblaster compatible, and that includes in dos, but you had to boot from another boot disk in allot of cases because the default boot would enable xms which was not compatible in multiple ways. you are hitting a software barrier that can be broken i think.

  • @Andou_Rena324
    @Andou_Rena324 ปีที่แล้ว +3

    How about windows 3.1

  • @costascostas1760
    @costascostas1760 ปีที่แล้ว +1

    Wait, Blood had quality sound through a pc speaker?

    • @RamtechENG
      @RamtechENG  ปีที่แล้ว +1

      It’s a montage

    • @costascostas1760
      @costascostas1760 ปีที่แล้ว +1

      @@RamtechENG ok, i got confused with the montage

  • @solsticeprojekt1937
    @solsticeprojekt1937 ปีที่แล้ว +1

    You need a proper config. Max I ever managed to get was around 630k free RAM and a bit. Lots of tricks involved.

  • @dylanguizor7155
    @dylanguizor7155 4 หลายเดือนก่อน

    MS DOS: can run 3D game
    Also MS DOS: not enough memory to run 2D game

  • @cosmickatamari
    @cosmickatamari หลายเดือนก่อน

    Legacy mode is IDE

  • @spookyboo3164
    @spookyboo3164 ปีที่แล้ว

    mbr master boot record still got the old versions of ms dos

  • @renardgrise
    @renardgrise ปีที่แล้ว +1

    I wonder if you could get windows 3.1 working...

  • @NoJusticeNoPeace
    @NoJusticeNoPeace ปีที่แล้ว +1

    CP/M next?

  • @tomyyoung2624
    @tomyyoung2624 ปีที่แล้ว +1

    Yes for a long time.

  • @sovietproductions7362
    @sovietproductions7362 10 หลายเดือนก่อน

    Try and load Commodore 64 basic v2 on modern pc

  • @jongeduard
    @jongeduard ปีที่แล้ว +3

    Yup it's fun. Though I still think using a VM is a greater solution. But yeah DOS is so simple that that is probably why it keeps working on modern hardware almost forever, even on bare metal.
    But if it's just for the experience of the games and not so much the operating system itself, you're mutch better off with DOSBox anyway, because it's optimized for modern graphics and has configurable CPU cycle speed.

    • @maxmuster7003
      @maxmuster7003 ปีที่แล้ว

      I am on an Android tablet with the Magic DosBox free app installed and i like to make tiny executable for DosBox with a little help from debug.

  • @bondjovi4595
    @bondjovi4595 ปีที่แล้ว

    MS-DOS would still be practical if they were able to develop new drivers f.o.s.s.

  • @andrewjenery1783
    @andrewjenery1783 ปีที่แล้ว

    The command line or command prompt that comes with all later versions of Windows allows you to do most of what MS-DOS did.