mirror of
https://gitea.tendokyu.moe/Hay1tsme/segatools.git
synced 2024-11-12 04:40:46 +01:00
16 lines
203 B
C
16 lines
203 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
struct mifare_block {
|
|
uint8_t bytes[16];
|
|
};
|
|
|
|
struct mifare_sector {
|
|
struct mifare_block blocks[4];
|
|
};
|
|
|
|
struct mifare {
|
|
struct mifare_sector sectors[16];
|
|
};
|