This commit is contained in:
Honghao Zeng 2024-01-10 07:05:36 -08:00
parent be9897a230
commit 18bb4182b9
1 changed files with 26 additions and 0 deletions

26
readme.md Normal file
View File

@ -0,0 +1,26 @@
aimeio-pcsc
---
PC/SC-based Aime card reader for `segatools`. `aimeio-pcsc` allows you to use PC/SC compliant smart card readers as your Aime card reader in `segatools`. `aimeio-pcsc` supports both the old Mifare Classic 1K-based Aime and the new FeliCa-based AIC Aime.
Tested on SONY's PaSoRi RC-S300. Other readers should, in theory, also work.
### Usage
To test if your card reader is supported, run `aimereader.exe` and try read your Aime card.
To use it with a game, copy `aimeio.dll` to your `segatools` folder and add the following to your `segatools.ini`:
```ini
[aimeio]
path=aimeio.dll
```
### Build
On Linux:
```sh
meson setup --cross cross-mingw-64.txt b64
ninja -C b64
```