Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 23 of file machxbox.c.
Referenced by MachInit().
{ /* Set LEDs to red before anything is initialized */ XboxSetLED("rrrr"); /* Initialize our stuff */ XboxMemInit(); XboxVideoInit(); /* Setup vtbl */ MachVtbl.ConsPutChar = XboxConsPutChar; MachVtbl.ConsKbHit = XboxConsKbHit; MachVtbl.ConsGetCh = XboxConsGetCh; MachVtbl.VideoClearScreen = XboxVideoClearScreen; MachVtbl.VideoSetDisplayMode = XboxVideoSetDisplayMode; MachVtbl.VideoGetDisplaySize = XboxVideoGetDisplaySize; MachVtbl.VideoGetBufferSize = XboxVideoGetBufferSize; MachVtbl.VideoHideShowTextCursor = XboxVideoHideShowTextCursor; MachVtbl.VideoPutChar = XboxVideoPutChar; MachVtbl.VideoCopyOffScreenBufferToVRAM = XboxVideoCopyOffScreenBufferToVRAM; MachVtbl.VideoIsPaletteFixed = XboxVideoIsPaletteFixed; MachVtbl.VideoSetPaletteColor = XboxVideoSetPaletteColor; MachVtbl.VideoGetPaletteColor = XboxVideoGetPaletteColor; MachVtbl.VideoSync = XboxVideoSync; MachVtbl.Beep = PcBeep; MachVtbl.PrepareForReactOS = XboxPrepareForReactOS; MachVtbl.GetMemoryMap = XboxMemGetMemoryMap; MachVtbl.DiskGetBootPath = DiskGetBootPath; MachVtbl.DiskReadLogicalSectors = XboxDiskReadLogicalSectors; MachVtbl.DiskGetDriveGeometry = XboxDiskGetDriveGeometry; MachVtbl.DiskGetCacheableBlockCount = XboxDiskGetCacheableBlockCount; MachVtbl.GetTime = XboxGetTime; MachVtbl.HwDetect = XboxHwDetect; MachVtbl.HwIdle = XboxHwIdle; /* Set LEDs to orange after init */ XboxSetLED("oooo"); }