GitHunt
0X

0xdeafcafe/go-xbdm

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

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

Languages

Go100.0%

Contributors

MIT License
Created February 9, 2017
Updated August 21, 2023
0xdeafcafe/go-xbdm | GitHunt