mirror of
https://gitea.tendokyu.moe/Dniel97/segatools.git
synced 2024-11-11 23:17:08 +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];
|
|
};
|