Skip to content

0xdeafcafe/go-xbdm

Repository files navigation

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)
}

About

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages