An emulator, assembler, and disassembler for the Sega Game Gear
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

22 righe
493 B

  1. /* Copyright (C) 2014-2015 Ben Kurtovic <ben.kurtovic@gmail.com>
  2. Released under the terms of the MIT License. See LICENSE for details. */
  3. #include "iomanager.h"
  4. #include "logging.h"
  5. /*
  6. Emulate a Game Gear. Handle I/O with the host computer.
  7. Block until emulation is finished.
  8. */
  9. void iomanager_emulate(GameGear *gg)
  10. {
  11. DEBUG("IOManager powering GameGear")
  12. gamegear_power(gg, true);
  13. // TODO
  14. DEBUG("IOManager unpowering GameGear")
  15. gamegear_power(gg, false);
  16. }