Pastebin launched a little side project called HostCabi.net, check it out ;-)Don't like ads? PRO users don't see any ads ;-)
Guest

3ds_underwater

By: a guest on Jun 2nd, 2013  |  syntax: Python  |  size: 0.67 KB  |  hits: 34  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #-------------------------------------------------------------------------------
  2. # Name:        3ds_under_the_sea
  3. # Purpose:      Emulate the functionality of the 3ds games console underwater.
  4. #
  5. # Author:      new
  6. #
  7. # Created:     02/06/2013
  8. # Copyright:   (c) new 2013
  9. # Licence:     <your licence>
  10. #-------------------------------------------------------------------------------
  11. #!/usr/bin/env python
  12.  
  13.  
  14. MARIO_WORLD = "Super mario world 3ds"
  15.  
  16. def emulate(game):
  17.     while true:
  18.         # Instruction-Identical emulation for water damage
  19.         pass
  20.  
  21.  
  22.  
  23. def main():
  24.     print "loading emulator..."
  25.     emulate(MARIO_WORLD)
  26.  
  27. if __name__ == '__main__':
  28.     main()