diff options
author | 2008-08-11 03:06:59 +0000 | |
---|---|---|
committer | 2008-08-11 03:06:59 +0000 | |
commit | 3c2b00d332842db1d1d69311958597f78bd5f534 (patch) | |
tree | 8d06d079157b93b27cdec7d01f614bdb2870ee0e /src/emu/cpu/i8085/i8085cpu.h | |
parent | 9ab4f76a04c642851b97b88571533371a13f1c31 (diff) |
structure, lower-casing functions and re-inclusion updates of the src\emu\cpu headers up to I.
It's mostly just re-inclusion renaming, but there are few other re-nameings.
Diffstat (limited to 'src/emu/cpu/i8085/i8085cpu.h')
-rw-r--r-- | src/emu/cpu/i8085/i8085cpu.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/emu/cpu/i8085/i8085cpu.h b/src/emu/cpu/i8085/i8085cpu.h index 6c6e8b30267..737844b431c 100644 --- a/src/emu/cpu/i8085/i8085cpu.h +++ b/src/emu/cpu/i8085/i8085cpu.h @@ -10,6 +10,12 @@ * *******************************************************/ +#pragma once + +#ifndef __I8085CPU_H__ +#define __I8085CPU_H__ + + #define SF 0x80 #define ZF 0x40 #define YF 0x20 @@ -186,3 +192,5 @@ int q = I.AF.b.h+R; \ (((I.BC.b.h^I.HL.b.h)&(I.HL.b.h^q)&SF)>>5); \ if (I.HL.b.l!=0) I.AF.b.l&=~ZF; \ } + +#endif /* __I8085CPU_H__ */ |