Is there any way to install emulator without using wine?

I need it to practice 16bit assembly code. I care about seeing what happens on the registers, at every instruction execution.Iam using ubuntu 18.04 I was unable to install wine due to broken package issues i tried many things but nothing worked. my source.list file

my source.list file

source.list

remaining code

deb bionic-security universe
# deb-src bionic-security universe
deb bionic-security multiverse
# deb-src bionic-security multiverse
deb bionic main
# deb-src bionic main
1

1 Answer

You can use DOSBox with TASM(an x86-16 assembler/debugger).
To install the current version of DOSBox on Ubuntu:

  1. Install DOSBox

    sudo apt-get install dosbox 
  2. Download TASM(Turbo Assembler) and TD(Turbo Debugger)

    Get a source for this

  3. Extract it to a known location, like /home/user/tasm

  4. Open DOSBox

  5. Mount the path in DOSBox with

    mount c /home/user/tasm
  6. Execute and enjoy

There were several tutorials on the www, but I didn't succeed in finding one that is still complete and available. Partial solutions can be found here or here. But both are without pictures.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like