Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.15 KB

README.md

File metadata and controls

39 lines (32 loc) · 1.15 KB

go-xbdm

Build Status Github Issues Github License

A go library for interacting with an Xbox 360 Development Kit.

Installation

go get github.com/0xdeafcafe/go-xbdm

Usage

import "github.com/0xdeafcafe/go-xbdm"

This example with be based on the assumption that the Xbox 360 Developer Kit's IP address is 192.168.1.88.

func main() {
  xbdm, err := goxbdm.NewXBDMClient("192.168.1.88")
  if err != nil {
    fmt.Println("There was an error connecting to the Development Kit.")
    return
  }

  // Set some random memory offset
  resp, err := xbdm.SetMemory(0xBF9BC9CC, "0000fa67")
  if err != nil {
    fmt.Println("There was an error writing memory to the Development Kit.")
    return
  }

  fmt.Println(resp)
}