Skip to content
/ go86 Public

Experimental 8086 emulator to learn the Go programming language.

Notifications You must be signed in to change notification settings

rcleveng/go86

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go86

Experimental 8086 emulator to learn the Go programming language.

Running

Run the emulator using the go run command.

Here's an example:

go run cmd/go86/go86.go -alsologtostderr run [path to 8086 executable]

Using the debugger

go86 offers two types of debuggers:

  • The lame debugger - this is a text based socket protocol designed for interactive human use. It's available on port 2159 by default.

  • GDB remote serial protocol debugger - This will implement the GDB remote serial protocol over a socket. You may connect with the following:

    set debug remote 1
    target remote [host]:2159
    

    For more information see: https://sourceware.org/gdb/current/onlinedocs/gdb/Connecting.html

About

Experimental 8086 emulator to learn the Go programming language.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages