diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-04 12:33:14 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-04 12:33:14 -0400 |
commit | b6e1e940603830ec221ea1331309479bd420015e (patch) | |
tree | ff6dbd8f4706ea6a903904d750717252915183c1 /kernel/include | |
parent | update fs header (diff) | |
download | comus-b6e1e940603830ec221ea1331309479bd420015e.tar.gz comus-b6e1e940603830ec221ea1331309479bd420015e.tar.bz2 comus-b6e1e940603830ec221ea1331309479bd420015e.zip |
fmt
Diffstat (limited to 'kernel/include')
-rw-r--r-- | kernel/include/comus/cpu.h | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/kernel/include/comus/cpu.h b/kernel/include/comus/cpu.h index a976695..c49fb45 100644 --- a/kernel/include/comus/cpu.h +++ b/kernel/include/comus/cpu.h @@ -14,28 +14,28 @@ typedef union { uint64_t raw; struct { - uint64_t cf : 1; - uint64_t : 1; - uint64_t pf : 1; - uint64_t : 1; - uint64_t af : 1; - uint64_t : 1; - uint64_t zf : 1; - uint64_t sf : 1; - uint64_t tf : 1; - uint64_t if_ : 1; - uint64_t df : 1; - uint64_t of : 1; - uint64_t iopl : 2; - uint64_t nt : 1; - uint64_t md : 1; - uint64_t rf : 1; - uint64_t vm : 1; - uint64_t ac : 1; - uint64_t vif : 1; - uint64_t vip : 1; - uint64_t id : 1; - uint64_t : 42; + uint64_t cf : 1; + uint64_t : 1; + uint64_t pf : 1; + uint64_t : 1; + uint64_t af : 1; + uint64_t : 1; + uint64_t zf : 1; + uint64_t sf : 1; + uint64_t tf : 1; + uint64_t if_ : 1; + uint64_t df : 1; + uint64_t of : 1; + uint64_t iopl : 2; + uint64_t nt : 1; + uint64_t md : 1; + uint64_t rf : 1; + uint64_t vm : 1; + uint64_t ac : 1; + uint64_t vif : 1; + uint64_t vip : 1; + uint64_t id : 1; + uint64_t : 42; }; } rflags_t; |