This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *----------------------------------------------------------- | |
| * Title : | |
| * Written by : | |
| * Date : | |
| * Description: | |
| *----------------------------------------------------------- | |
| ORG $984500 | |
| START: ; first instruction of program | |
| move.l #$201000,A3 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Possible memory map: | |
| https://gitlab.com/mamedev/mame/-/blob/mame0226/src/mame/drivers/hp16500.cpp | |
| code starts at 002C in the pvtest file, which is loaded at 0x984500. | |
| Strings are null terminated. | |
| Screen size: 576x368; each logical line is 592 pixels long (16 invisible) | |
| 992fe2+2: SetCoordinates: push y, x | |
| 0098a500 48 78 00 pea (0xb4 ).w |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ./gw read --format ibm.scan --tracks=c=0-79:h=0-1 $1.hfe::bitrate=500 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="ISO-8859-1"?> | |
| <!-- HxC Floppy Emulator Disk Layout --> | |
| <disk_layout> | |
| <disk_layout_name>HP165X</disk_layout_name> | |
| <disk_layout_description>HP165X Logic Analyzer</disk_layout_description> | |
| <prefered_file_extension>lif</prefered_file_extension> | |
| <interface_mode>GENERIC_SHUGART_DD_FLOPPYMODE</interface_mode> | |
| <file_size>819200</file_size> | |
| <layout> | |
| <number_of_track>80</number_of_track> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import struct | |
| BLOCK_SIZE = 256 | |
| DIR_ENTRY_SIZE = 32 | |
| RESERVED_TRACKS = 1 | |
| CHUNKING = True | |
| CHUNK_FILLER = b'\xFF\xFF' + (BLOCK_SIZE-2)*b'\x00' | |
| if len(sys.argv) < 3: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| inName = sys.argv[1] | |
| if inName.lower().endswith(".lif"): | |
| outName = inName[:-3]+"xml" | |
| else: | |
| outName = inName+".xml" | |
| inName = inName+".lif" | |
| print("Converting",inName,"to",outName) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # For Saitek X45 and Windows | |
| # | |
| # uses the mini joystick on the throttle as a mouse if the mode switch is on mode 3 | |
| # | |
| import sys | |
| import os | |
| import time | |
| import win32gui, win32con, win32api, win32file, win32event, win32gui_struct, winnt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -raubB com.digitaldreamlabs.cozmo2-orig/files/cozmo/Scratch/js/common.js com.digitaldreamlabs.cozmo2/files/cozmo/Scratch/js/common.js | |
| --- com.digitaldreamlabs.cozmo2-orig/files/cozmo/Scratch/js/common.js 2025-07-12 12:41:59.997230300 -0500 | |
| +++ com.digitaldreamlabs.cozmo2/files/cozmo/Scratch/js/common.js 2025-07-12 15:39:45.336174300 -0500 | |
| @@ -390,13 +390,14 @@ | |
| e.preventDefault(); | |
| }); | |
| - greenFlag.addEventListener('click', function () { | |
| + var greenflag_press = function(turbo) { | |
| Scratch.workspace.playAudio('click'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| songs=[ | |
| ['delete/01 Tonoe de Pon.ps4',0xd1d8e,0x5f8], | |
| ['delete/02 Inn.ps4',0xd2386,0x10e], | |
| ['delete/03 Motavia Village.ps4',0xd2494,0x4ba], | |
| ['delete/04 Motavia Town.ps4',0xd294e,0x452], | |
| ['delete/05 Organic Beat.ps4',0xd2da0,0x440], | |
| ['delete/06 Dezolis Town 1.ps4',0xd31e0,0x388], | |
| ['delete/07 Now on Sale.ps4',0xd3568,0x33a], | |
| ['delete/08 Behind the Circuit.ps4',0xd38a2,0x4f0], | |
| ['delete/09 Machine Center.ps4',0xd3d92,0x30a], |
NewerOlder