Skip to content

0DaveX/nxdk-rdt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Xbox Remote Dev Tool

This tool will allow you remote control of an Xbox from your development system over the network. This tool is very early in development and will likely be improved over the future.

Supported commands:

  • SYSINFO - Get some system info
  • REBOOT - Reboot the machine
  • MALLOC - Allocate some memory
  • FREE - Free allocated memory
  • MEM_READ - Read memory
  • MEM_WRITE - Write memory
  • DEBUG_PRINT - Print a debug string to the screen
  • SHOW_DEBUG_SCREEN - Show the debug screen
  • SHOW_FRONT_SCREEN - Switch back to the front screen

To-do list:

  • Code execution
  • Code debugging
  • Screenshots/Video
  • Push Buffer
  • File IO
  • HAL access to SMBus, etc.
  • MSR/IO Port

Check out dbg.py for the Python interface (to be run on your dev system). Check out dbgd.c for the Xbox side of things.

Protocol

Communication takes place using protocol buffers over a TCP socket. The protocol is defined in dbg.proto.

You will need protobuf-c to rebuild the protocol interface C file and regular protoc to build the Python interface. Both are available via apt-get.

Test With XQEMU

Run with

	-net nic,model=nvnet -net user,hostfwd=tcp::8080-10.0.2.15:80 \

Then connect to 127.0.0.1:8080.

Run on a real Xbox

Build, then copy the XBE over to your xbox.

About

Xbox Remote Dev Tool

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • C 97.7%
  • Python 1.9%
  • Makefile 0.4%