Question

I need to do assembly programming using TASM. But TASM application is running on 16bit OS. My PC runs Windows 7 64bit OS. Is there any way to solve this problem?

Était-ce utile?

La solution 2

You can use a virtual machine like : https://www.virtualbox.org/, there is also VMware, Microsoft Virtual machine

you install a virtual OS on it (windows 7 32bits, XP, I was running Win98 on it to play old Prince of Persia :p) and do you work normally ;-)

Autres conseils

  1. Windows XP mode provides an emulated 32-bit XP install which can run 16-bit NE and DOS programs.

  2. DosBox is a very good DOS emulator which can run most DOS programs, both real-mode and protected mode. Even Windows 3.x! It can also share a directory with the host so it's very easy to use.

  3. MS-DOS Player by Toshiya Takeda can run many simple DOS programs, as long as they don't use any exotic DOS or BIOS services. It's very simple to use, just add "msdos" before the command:

    msdos <program.exe> <arguments>

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top