summaryrefslogtreecommitdiffstats
path: root/qemu/roms/seabios/src/std/pmm.h
blob: 80027f38b3aae4e818a886b2e91f0386b6a520b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef __PMM_H
#define __PMM_H

#include "types.h" // u32

#define PMM_SIGNATURE 0x4d4d5024 // $PMM

struct pmmheader {
    u32 signature;
    u8 version;
    u8 length;
    u8 checksum;
    struct segoff_s entry;
    u8 reserved[5];
} PACKED;

#define PMM_FUNCTION_NOT_SUPPORTED 0xffffffff

#endif // pmm.h