[SniffEmu] v1.1.0

This commit is contained in:
2023-02-25 14:41:47 +01:00
parent 2afb5eba89
commit 4638927f13
6 changed files with 55 additions and 16 deletions

View File

@@ -1,8 +1,8 @@
Short: CLI tool to "detect" if the system is running in emulator
Short: Check if system is running in emulator
Author: Tomek W<>jcik <contact@bthlabs.pl>
Uploader: Tomek W<>jcik <contact@bthlabs.pl>
Type: util/sys
Version: 1.0.0
Version: 1.1.0
Architecture: m68k-amigaos
Requires: AmigaOS 3.1+, MC68020+
@@ -12,11 +12,14 @@ SniffEmu is a small CLI tool to "detect" if the system is running in
emulation-like environment, e.g. UAE. I use it to conditionally execute parts
of Startup-Sequence, e.g. to can skip FBlit when the OS is booting on PiStorm.
Usage: SniffEmu HELP/S RTG/S MODE
Usage: SniffEmu HELP/S RTG/S SND/S MODE
MODE is one of EMU68, UAE or MUSASHI. RTG/S allows you to specifically look
for the emulator's RTG card, so you can e.g. set up the proper screen mode.
SND/S allows you to look for the emulator's sound card. This currently works
only with UAESND card in WinUAE.
Example:
> SniffEmu EMU68
@@ -25,8 +28,8 @@ SniffEmu: Looking for board: 28019:-1... NOT FOUND
> SniffEmu RTG UAE
SniffEmu: Looking for board: 2011:96... FOUND
If the emulator (or RTG) was detected, the program will set the returncode to
WARN. Otherwise, it'll be OK.
If the emulator (or RTG/SND) was detected, the program will set the returncode
to WARN. Otherwise, it'll be OK.
Example script:
@@ -47,6 +50,11 @@ SniffEmu is licensed under the MIT License.
Changelog
---------
Version 1.1.0 (25.02.2023)
* Added sound card detection.
Version 1.0.0 (16.02.2023)
* Initial release.