LR35902: Fix pack pop pragma

This commit is contained in:
Jeffrey Pfau 2016-01-18 21:01:59 -08:00
parent 5a23814973
commit 23ca81708d
1 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ union FlagRegister {
uint8_t packed;
};
#pragma pack(pop, 1)
#pragma pack(pop)
enum LR35902ExecutionState {
LR35902_CORE_FETCH = 0,
@ -83,7 +83,7 @@ struct LR35902Core {
};
uint16_t af;
};
#pragma pack(pop, 1)
#pragma pack(pop)
union {
struct {
uint8_t c;