zemu 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/zemu/config.rb +312 -0
- data/lib/zemu/instance.rb +179 -0
- data/lib/zemu.rb +172 -0
- data/src/debug.c +118 -0
- data/src/debug.h +30 -0
- data/src/external/Z/API/Z/ABIs/generic/allocator.h +36 -0
- data/src/external/Z/API/Z/ABIs/generic/cipher.h +47 -0
- data/src/external/Z/API/Z/ABIs/generic/data codec.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/emulation.h +103 -0
- data/src/external/Z/API/Z/ABIs/generic/hash function.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/module.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/wave codec.h +40 -0
- data/src/external/Z/API/Z/classes/base/InitializerList.hpp +34 -0
- data/src/external/Z/API/Z/classes/base/OpaqueFunctionPointer.hpp +26 -0
- data/src/external/Z/API/Z/classes/base/OpaqueMemberFunctionPointer.hpp +26 -0
- data/src/external/Z/API/Z/classes/base/Pair.hpp +46 -0
- data/src/external/Z/API/Z/classes/base/Range.hpp +111 -0
- data/src/external/Z/API/Z/classes/base/SizedString.hpp +66 -0
- data/src/external/Z/API/Z/classes/base/Status.hpp +89 -0
- data/src/external/Z/API/Z/classes/base/Symbol.hpp +39 -0
- data/src/external/Z/API/Z/classes/base/Tuple.hpp +111 -0
- data/src/external/Z/API/Z/classes/base/Value2D.hpp +389 -0
- data/src/external/Z/API/Z/classes/base/Value3D.hpp +368 -0
- data/src/external/Z/API/Z/classes/buffering/RingBuffer.hpp +93 -0
- data/src/external/Z/API/Z/classes/buffering/TripleBuffer.hpp +68 -0
- data/src/external/Z/API/Z/classes/functional/Functor.hpp +265 -0
- data/src/external/Z/API/Z/classes/functional/MemberFunction.hpp +98 -0
- data/src/external/Z/API/Z/classes/functional/ObjectMemberFunction.hpp +172 -0
- data/src/external/Z/API/Z/classes/functional/ObjectSelector.hpp +219 -0
- data/src/external/Z/API/Z/classes/functional/Selector.hpp +146 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/AABB.hpp +81 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/AABR.hpp +685 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Box.hpp +219 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Circle.hpp +80 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Line2D.hpp +93 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Line3D.hpp +80 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Rectangle.hpp +675 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Sphere.hpp +0 -0
- data/src/external/Z/API/Z/classes/memory/Shared.hpp +90 -0
- data/src/external/Z/API/Z/constants/base.h +35 -0
- data/src/external/Z/API/Z/constants/chemical elements.h +6385 -0
- data/src/external/Z/API/Z/constants/numbers.h +963 -0
- data/src/external/Z/API/Z/constants/version.h +15 -0
- data/src/external/Z/API/Z/formats/character set/ASCII.h +158 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP437.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP737.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP775.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP850.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP852.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP855.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP857.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP858.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP860.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP861.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP862.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP863.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP864.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP865.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP866.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP869.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP872.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP874.h +159 -0
- data/src/external/Z/API/Z/formats/character set/Unicode.h +30119 -0
- data/src/external/Z/API/Z/formats/data model/I16LP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/ILP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/ILP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/IP16L32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LLP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/SILP64.h +19 -0
- data/src/external/Z/API/Z/formats/file system/FAT12.h +61 -0
- data/src/external/Z/API/Z/formats/floating-point/IEEE 754.h +141 -0
- data/src/external/Z/API/Z/formats/floating-point/x87.h +74 -0
- data/src/external/Z/API/Z/formats/image/ICNS.h +39 -0
- data/src/external/Z/API/Z/formats/keymap/Mac OS.h +284 -0
- data/src/external/Z/API/Z/formats/keymap/Z.h +141 -0
- data/src/external/Z/API/Z/formats/multimedia/Creative Voice.h +106 -0
- data/src/external/Z/API/Z/formats/multimedia/Microsoft Wave.h +49 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ACH.h +44 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/FRZ.h +54 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/PRG.h +33 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SEM.h +46 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SIT.h +34 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SNA.h +117 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SNP.h +37 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SP.h +62 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/Z80.h +117 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ZX.h +56 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ZX82.h +70 -0
- data/src/external/Z/API/Z/formats/storage medium image/NES Game Pak/UNIF.h +26 -0
- data/src/external/Z/API/Z/formats/storage medium image/NES Game Pak/iNES.h +76 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/TAP.h +25 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/TZX.h +1185 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/Warajevo TAP.h +32 -0
- data/src/external/Z/API/Z/formats/storage medium image/floppy disk/FDI.h +45 -0
- data/src/external/Z/API/Z/functions/base/Z2D.h +583 -0
- data/src/external/Z/API/Z/functions/base/Z3D.h +712 -0
- data/src/external/Z/API/Z/functions/base/ZRange.h +137 -0
- data/src/external/Z/API/Z/functions/base/all.h +16 -0
- data/src/external/Z/API/Z/functions/base/casting.hpp +37 -0
- data/src/external/Z/API/Z/functions/base/character.h +38 -0
- data/src/external/Z/API/Z/functions/base/constructors.h +326 -0
- data/src/external/Z/API/Z/functions/base/structure.hpp +26 -0
- data/src/external/Z/API/Z/functions/base/type.hpp +60 -0
- data/src/external/Z/API/Z/functions/base/value.h +1901 -0
- data/src/external/Z/API/Z/functions/base/value.hpp +112 -0
- data/src/external/Z/API/Z/functions/buffering/ZRingBuffer.h +85 -0
- data/src/external/Z/API/Z/functions/buffering/ZTripleBuffer.h +65 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/Z2DLine.h +179 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/Z3DLine.h +168 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZAABB.h +361 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZAABR.h +1081 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZBox.h +340 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZCircle.h +142 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZRectangle.h +1267 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZSphere.h +156 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/all.h +18 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/constructors.h +620 -0
- data/src/external/Z/API/Z/functions/time/date.h +29 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/6502.h +90 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/Z80.h +245 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/i4004.h +37 -0
- data/src/external/Z/API/Z/hardware/PSG/General Instrument/AY-3-891x.h +180 -0
- data/src/external/Z/API/Z/hardware/VDC/Ricoh/RP2C0x.h +625 -0
- data/src/external/Z/API/Z/hardware/bus/AGP.h +24 -0
- data/src/external/Z/API/Z/hardware/bus/USB.h +510 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Inves Spectrum +.h +47 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Pentagon.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Scorpion.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum + 128K.h +158 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +.h +82 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +2.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +2A.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +3.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum.h +109 -0
- data/src/external/Z/API/Z/hardware/machine/model/console/Nintendo Entertainment System/NES-001 (NTSC).h +29 -0
- data/src/external/Z/API/Z/hardware/machine/model/console/Nintendo Entertainment System/NES-001 (PAL).h +29 -0
- data/src/external/Z/API/Z/hardware/machine/platform/computer/ZX Spectrum.h +405 -0
- data/src/external/Z/API/Z/hardware/machine/platform/console/Game Boy.h +49 -0
- data/src/external/Z/API/Z/hardware/machine/platform/console/Nintendo Entertainment System.h +350 -0
- data/src/external/Z/API/Z/hardware/storage medium/ROM cartridge/SNES Game Pak.h +238 -0
- data/src/external/Z/API/Z/inspection/C/completion.h +178 -0
- data/src/external/Z/API/Z/inspection/C/modules/C11.h +41 -0
- data/src/external/Z/API/Z/inspection/C/modules/C18.h +13 -0
- data/src/external/Z/API/Z/inspection/C/modules/C89.h +19 -0
- data/src/external/Z/API/Z/inspection/C/modules/C90.h +13 -0
- data/src/external/Z/API/Z/inspection/C/modules/C94.h +15 -0
- data/src/external/Z/API/Z/inspection/C/modules/C99.h +29 -0
- data/src/external/Z/API/Z/inspection/C/modules/KR C.h +19 -0
- data/src/external/Z/API/Z/inspection/C++/completion.h +512 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++03.h +15 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++11.h +80 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++14.h +26 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++17.h +55 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++85.h +11 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++89.h +13 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++98.h +17 -0
- data/src/external/Z/API/Z/inspection/C++.h +78 -0
- data/src/external/Z/API/Z/inspection/C.h +79 -0
- data/src/external/Z/API/Z/inspection/CPU/completion.h +56 -0
- data/src/external/Z/API/Z/inspection/CPU/detection.h +714 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/6502.h +25 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/AArch32.h +32 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/AArch64.h +32 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/Z80.h +26 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/x86-32.h +31 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/x86-64.h +312 -0
- data/src/external/Z/API/Z/inspection/CPU.h +209 -0
- data/src/external/Z/API/Z/inspection/OS/completion.h +36 -0
- data/src/external/Z/API/Z/inspection/OS/detection.h +768 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Linux.h +22 -0
- data/src/external/Z/API/Z/inspection/OS/modules/MS-DOS.h +16 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Mac OS X.h +23 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Windows.h +19 -0
- data/src/external/Z/API/Z/inspection/OS/modules/iPhone OS.h +23 -0
- data/src/external/Z/API/Z/inspection/OS.h +236 -0
- data/src/external/Z/API/Z/inspection/Objective-C/completion.h +8 -0
- data/src/external/Z/API/Z/inspection/Objective-C/modules/Objective-C v1.0.h +11 -0
- data/src/external/Z/API/Z/inspection/Objective-C/modules/Objective-C v2.0.h +15 -0
- data/src/external/Z/API/Z/inspection/Objective-C.h +51 -0
- data/src/external/Z/API/Z/inspection/Z.h +19 -0
- data/src/external/Z/API/Z/inspection/build.h +22 -0
- data/src/external/Z/API/Z/inspection/character set.h +66 -0
- data/src/external/Z/API/Z/inspection/compiler/completion.h +2885 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Apple LLVM.h +26 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Clang.h +1664 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/GCC.h +1366 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/SCCZ80.h +473 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Visual C++.h +606 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/cc65.h +529 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/generic.h +13 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/template.h +650 -0
- data/src/external/Z/API/Z/inspection/compiler.h +299 -0
- data/src/external/Z/API/Z/inspection/data model/completion.h +128 -0
- data/src/external/Z/API/Z/inspection/data model/deduction.h +9 -0
- data/src/external/Z/API/Z/inspection/data model/detection.h +45 -0
- data/src/external/Z/API/Z/inspection/data model.h +362 -0
- data/src/external/Z/API/Z/inspection/floating-point/completion.h +50 -0
- data/src/external/Z/API/Z/inspection/floating-point.h +324 -0
- data/src/external/Z/API/Z/inspection/language.h +163 -0
- data/src/external/Z/API/Z/inspection/platform/detection.h +9 -0
- data/src/external/Z/API/Z/inspection/platform.h +29 -0
- data/src/external/Z/API/Z/keys/C++.h +27 -0
- data/src/external/Z/API/Z/keys/C.h +29 -0
- data/src/external/Z/API/Z/keys/CPU.h +80 -0
- data/src/external/Z/API/Z/keys/OS.h +182 -0
- data/src/external/Z/API/Z/keys/Objective-C.h +17 -0
- data/src/external/Z/API/Z/keys/chemistry.h +26 -0
- data/src/external/Z/API/Z/keys/compiler.h +178 -0
- data/src/external/Z/API/Z/keys/data model.h +32 -0
- data/src/external/Z/API/Z/keys/endianness.h +24 -0
- data/src/external/Z/API/Z/keys/language.h +21 -0
- data/src/external/Z/API/Z/keys/layout.h +20 -0
- data/src/external/Z/API/Z/keys/mathematics/geometry.h +29 -0
- data/src/external/Z/API/Z/keys/mathematics/number.h +21 -0
- data/src/external/Z/API/Z/keys/order.h +18 -0
- data/src/external/Z/API/Z/keys/platform.h +87 -0
- data/src/external/Z/API/Z/keys/program.h +39 -0
- data/src/external/Z/API/Z/keys/science/chemical elements.h +200 -0
- data/src/external/Z/API/Z/keys/science/electricity.h +18 -0
- data/src/external/Z/API/Z/keys/science/magnetism.h +19 -0
- data/src/external/Z/API/Z/keys/status.h +69 -0
- data/src/external/Z/API/Z/keys/text.h +27 -0
- data/src/external/Z/API/Z/keys/value.h +88 -0
- data/src/external/Z/API/Z/macros/arguments.h +25 -0
- data/src/external/Z/API/Z/macros/casting.h +22 -0
- data/src/external/Z/API/Z/macros/character.h +159 -0
- data/src/external/Z/API/Z/macros/date.h +14 -0
- data/src/external/Z/API/Z/macros/key.h +20 -0
- data/src/external/Z/API/Z/macros/language.h +126 -0
- data/src/external/Z/API/Z/macros/language.hpp +81 -0
- data/src/external/Z/API/Z/macros/members.h +86 -0
- data/src/external/Z/API/Z/macros/pasting.h +308 -0
- data/src/external/Z/API/Z/macros/pointer.h +33 -0
- data/src/external/Z/API/Z/macros/repetition.h +283 -0
- data/src/external/Z/API/Z/macros/structure.h +104 -0
- data/src/external/Z/API/Z/macros/templating.h +407 -0
- data/src/external/Z/API/Z/macros/tokens.h +14 -0
- data/src/external/Z/API/Z/macros/type enumeration.h +43 -0
- data/src/external/Z/API/Z/macros/type selection.hpp +76 -0
- data/src/external/Z/API/Z/macros/value.h +489 -0
- data/src/external/Z/API/Z/macros/variadic pasting.h +21 -0
- data/src/external/Z/API/Z/macros/variadic selection.h +56 -0
- data/src/external/Z/API/Z/macros/variadic.h +46 -0
- data/src/external/Z/API/Z/macros/version.h +17 -0
- data/src/external/Z/API/Z/network/3/IP.h +36 -0
- data/src/external/Z/API/Z/network/4/TCP.h +24 -0
- data/src/external/Z/API/Z/network/4/UDP.h +26 -0
- data/src/external/Z/API/Z/network/7/ED2K.h +104 -0
- data/src/external/Z/API/Z/network/7/HTTP.h +100 -0
- data/src/external/Z/API/Z/traits/SelectType.hpp +71 -0
- data/src/external/Z/API/Z/traits/TernaryType.hpp +20 -0
- data/src/external/Z/API/Z/traits/Type.hpp +4516 -0
- data/src/external/Z/API/Z/traits/TypeCount.hpp +52 -0
- data/src/external/Z/API/Z/traits/TypeList.hpp +376 -0
- data/src/external/Z/API/Z/traits/base.hpp +19 -0
- data/src/external/Z/API/Z/traits/filtering.hpp +30 -0
- data/src/external/Z/API/Z/traits/mathematics.hpp +48 -0
- data/src/external/Z/API/Z/types/arguments.h +19 -0
- data/src/external/Z/API/Z/types/base.h +1655 -0
- data/src/external/Z/API/Z/types/base.hpp +169 -0
- data/src/external/Z/API/Z/types/buffering.h +27 -0
- data/src/external/Z/API/Z/types/mathematics.h +135 -0
- data/src/external/Z/API/Z/types/time.h +23 -0
- data/src/external/Z/COPYING.LESSER +165 -0
- data/src/external/Z/development/Qt Creator/Z.pro +253 -0
- data/src/external/Z/distribution/CocoaPods/Zeta.podspec +18 -0
- data/src/external/Z/distribution/Gentoo Linux/Zeta-0.1.ebuild +22 -0
- data/src/external/Z/distribution/Gentoo Linux/metadata.xml +8 -0
- data/src/external/Z/distribution/Homebrew/Zeta.rb +11 -0
- data/src/external/z80/API/emulation/CPU/Z80.h +201 -0
- data/src/external/z80/README.md +229 -0
- data/src/external/z80/building/premake4.lua +33 -0
- data/src/external/z80/development/Xcode/Z80.xcodeproj/project.pbxproj +520 -0
- data/src/external/z80/sources/Z80.c +1660 -0
- data/src/interrupt.c +6 -0
- data/src/interrupt.h +3 -0
- data/src/io.c.erb +115 -0
- data/src/io.h.erb +18 -0
- data/src/main.c +69 -0
- data/src/memory.c.erb +43 -0
- data/src/memory.h.erb +9 -0
- metadata +329 -0
@@ -0,0 +1,473 @@
|
|
1
|
+
/* Z Kit - inspection/modules/compiler/SCCZ80.h
|
2
|
+
_____ _______________
|
3
|
+
/_ /_/ -_/_ _/ _ |
|
4
|
+
/____/\___/ /__//___/_| Kit
|
5
|
+
Copyright (C) 2006-2018 Manuel Sainz de Baranda y Goñi.
|
6
|
+
Released under the terms of the GNU Lesser General Public License v3. */
|
7
|
+
|
8
|
+
#ifndef _Z_inspection_modules_compiler_SCCZ80_H_
|
9
|
+
#define _Z_inspection_modules_compiler_SCCZ80_H_
|
10
|
+
|
11
|
+
#include <Z/macros/version.h>
|
12
|
+
|
13
|
+
/* MARK: - Identification */
|
14
|
+
|
15
|
+
#define Z_COMPILER Z_COMPILER_SCCZ80
|
16
|
+
#define Z_COMPILER_STRING Z_COMPILER_STRING_SCCZ80
|
17
|
+
|
18
|
+
/*#define Z_COMPILER_VERSION*/
|
19
|
+
/*#define Z_COMPILER_VERSION_STRING*/
|
20
|
+
|
21
|
+
/* MARK: - CPU */
|
22
|
+
|
23
|
+
#define Z_COMPILER_CPU_ARCHITECTURE Z_CPU_ARCHITECTURE_Z80
|
24
|
+
|
25
|
+
/* MARK: - CPU endianness */
|
26
|
+
|
27
|
+
#define Z_COMPIER_CPU_INTEGER_ENDIANNESS Z_ENDIANNESS_LITTLE
|
28
|
+
|
29
|
+
/*#define Z_COMPIER_CPU_INTEGER_ENDIANNESS_8BIT*/
|
30
|
+
/*#define Z_COMPIER_CPU_INTEGER_ENDIANNESS_16BIT*/
|
31
|
+
/*#define Z_COMPIER_CPU_INTEGER_ENDIANNESS_32BIT*/
|
32
|
+
/*#define Z_COMPIER_CPU_INTEGER_ENDIANNESS_64BIT*/
|
33
|
+
/*#define Z_COMPIER_CPU_INTEGER_ENDIANNESS_128BIT*/
|
34
|
+
|
35
|
+
/* MARK: - Bit field order */
|
36
|
+
|
37
|
+
/*#define Z_COMPILER_BIT_FIELD_ORDER*/
|
38
|
+
/*#define Z_COMPILER_BIT_FIELD_ORDER_8BIT*/
|
39
|
+
/*#define Z_COMPILER_BIT_FIELD_ORDER_16BIT*/
|
40
|
+
/*#define Z_COMPILER_BIT_FIELD_ORDER_32BIT*/
|
41
|
+
/*#define Z_COMPILER_BIT_FIELD_ORDER_64BIT*/
|
42
|
+
/*#define Z_COMPILER_BIT_FIELD_ORDER_128BIT*/
|
43
|
+
|
44
|
+
/* MARK: - OS */
|
45
|
+
|
46
|
+
/*#define Z_COMPIER_OS*/
|
47
|
+
|
48
|
+
/* MARK: - Data model */
|
49
|
+
|
50
|
+
/*#define Z_COMPILER_DATA_MODEL*/
|
51
|
+
|
52
|
+
/* MARK: - K&R C support */
|
53
|
+
|
54
|
+
#define Z_COMPILER_C_HAS_OPERATOR_SIZE_OF TRUE
|
55
|
+
#define Z_COMPILER_C_HAS_STORAGE_CLASS_EXTERN TRUE
|
56
|
+
#define Z_COMPILER_C_HAS_STORAGE_CLASS_STATIC TRUE
|
57
|
+
|
58
|
+
/*#define Z_COMPILER_C_HAS_STORAGE_CLASS_AUTO*/
|
59
|
+
/*#define Z_COMPILER_C_HAS_STORAGE_CLASS_REGISTER*/
|
60
|
+
/*#define Z_COMPILER_C_HAS_TYPE_FLOAT*/
|
61
|
+
/*#define Z_COMPILER_C_HAS_TYPE_DOUBLE*/
|
62
|
+
|
63
|
+
/* MARK: - C89 support */
|
64
|
+
|
65
|
+
#define Z_COMPILER_C_HAS_ENUMERATION TRUE
|
66
|
+
#define Z_COMPILER_C_HAS_VOID_POINTER TRUE
|
67
|
+
#define Z_COMPILER_C_HAS_TYPE_QUALIFIER_CONSTANT TRUE
|
68
|
+
#define Z_COMPILER_C_HAS_TYPE_QUALIFIER_VOLATILE TRUE
|
69
|
+
|
70
|
+
/*#define Z_COMPILER_C_HAS_TYPE_LDOUBLE*/
|
71
|
+
|
72
|
+
/* MARK: - C90 support */
|
73
|
+
|
74
|
+
/* MARK: - C94 support */
|
75
|
+
|
76
|
+
/*#define Z_COMPILER_C_HAS_DIGRAPHS*/
|
77
|
+
|
78
|
+
/* MARK: - C99 support */
|
79
|
+
|
80
|
+
/*#define Z_COMPILER_C_HAS_COMPOUND_LITERAL*/
|
81
|
+
/*#define Z_COMPILER_C_HAS_CPP_STYLE_COMMENT*/
|
82
|
+
/*#define Z_COMPILER_C_HAS_DESIGNATED_INITIALIZER*/
|
83
|
+
/*#define Z_COMPILER_C_HAS_FLEXIBLE_ARRAY_MEMBER*/
|
84
|
+
/*#define Z_COMPILER_C_HAS_INLINE_FUNCION*/
|
85
|
+
/*#define Z_COMPILER_C_HAS_MIXED_DECLARATIONS_AND_CODE*/
|
86
|
+
/*#define Z_COMPILER_C_HAS_NON_CONSTANT_AGGREGATE_INITIALIZER*/
|
87
|
+
/*#define Z_COMPILER_C_HAS_PREPROCESSOR_ARITHMETIC_DONE_IN_MAXIMUM_INTEGRAL*/
|
88
|
+
/*#define Z_COMPILER_C_HAS_VARIADIC_MACRO*/
|
89
|
+
/*#define Z_COMPILER_C_HAS_VLA*/
|
90
|
+
/*#define Z_COMPILER_C_HAS_MAGIC_CONSTANT_FUNCTION_NAME*/
|
91
|
+
/*#define Z_COMPILER_C_HAS_SPECIFIER_INLINE*/
|
92
|
+
/*#define Z_COMPILER_C_HAS_TYPE_BOOLEAN*/
|
93
|
+
/*#define Z_COMPILER_C_HAS_TYPE_LLONG*/
|
94
|
+
/*#define Z_COMPILER_C_HAS_TYPE_QUALIFIER_RESTRICT*/
|
95
|
+
|
96
|
+
/* MARK: - C11 support */
|
97
|
+
|
98
|
+
/*#define Z_COMPILER_C_HAS_ANONYMOUS_STRUCTURE*/
|
99
|
+
/*#define Z_COMPILER_C_HAS_ANONYMOUS_UNION*/
|
100
|
+
/*#define Z_COMPILER_C_HAS_ATOMIC_OPERATIONS*/
|
101
|
+
/*#define Z_COMPILER_C_HAS_GENERIC_SELECTION*/
|
102
|
+
/*#define Z_COMPILER_C_HAS_STATIC_ASSERTION*/
|
103
|
+
/*#define Z_COMPILER_C_HAS_OPERATOR_ALIGN_OF*/
|
104
|
+
/*#define Z_COMPILER_C_HAS_SPECIFIER_ALIGN_AS*/
|
105
|
+
/*#define Z_COMPILER_C_HAS_SPECIFIER_ATOMIC*/
|
106
|
+
/*#define Z_COMPILER_C_HAS_SPECIFIER_NO_RETURN*/
|
107
|
+
/*#define Z_COMPILER_C_HAS_STORATE_CLASS_THREAD_LOCAL*/
|
108
|
+
/*#define Z_COMPILER_C_HAS_TYPE_QUALIFIER_ATOMIC*/
|
109
|
+
|
110
|
+
/* MARK: - C18 support */
|
111
|
+
|
112
|
+
/* MARK: - Apple C extensions support */
|
113
|
+
|
114
|
+
/*#define Z_COMPILER_C_HAS_CLOSURE*/
|
115
|
+
|
116
|
+
/* MARK: - Attributes */
|
117
|
+
|
118
|
+
/*#define Z_COMPILER_ATTRIBUTE_ALIAS*/
|
119
|
+
/*#define Z_COMPILER_ATTRIBUTE_API*/
|
120
|
+
/*#define Z_COMPILER_ATTRIBUTE_API_ALIAS*/
|
121
|
+
/*#define Z_COMPILER_ATTRIBUTE_API_EXPORT*/
|
122
|
+
/*#define Z_COMPILER_ATTRIBUTE_API_EXPORT_ALIAS*/
|
123
|
+
/*#define Z_COMPILER_ATTRIBUTE_API_WEAK_EXPORT*/
|
124
|
+
/*#define Z_COMPILER_ATTRIBUTE_EBCO*/
|
125
|
+
/*#define Z_COMPILER_ATTRIBUTE_INLINE*/
|
126
|
+
/*#define Z_COMPILER_ATTRIBUTE_NO_RETURN*/
|
127
|
+
/*#define Z_COMPILER_ATTRIBUTE_NULL_TERMINATED*/
|
128
|
+
/*#define Z_COMPILER_ATTRIBUTE_PRIVATE*/
|
129
|
+
/*#define Z_COMPILER_ATTRIBUTE_PUBLIC*/
|
130
|
+
/*#define Z_COMPILER_ATTRIBUTE_STRICT_SIZE_BEGIN*/
|
131
|
+
/*#define Z_COMPILER_ATTRIBUTE_STRICT_SIZE_END*/
|
132
|
+
/*#define Z_COMPILER_ATTRIBUTE_THREAD_LOCAL*/
|
133
|
+
/*#define Z_COMPILER_ATTRIBUTE_WEAK*/
|
134
|
+
|
135
|
+
/* MARK: - Built-in constants */
|
136
|
+
|
137
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT16_INFINITY*/
|
138
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT16_NAN*/
|
139
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT32_INFINITY*/
|
140
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT32_NAN*/
|
141
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT64_INFINITY*/
|
142
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT64_NAN*/
|
143
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT128_INFINITY*/
|
144
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT128_NAN*/
|
145
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT80_X87_INFINITY*/
|
146
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT80_X87_NAN*/
|
147
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT96_X87_INFINITY*/
|
148
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT96_X87_NAN*/
|
149
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT128_X87_INFINITY*/
|
150
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT128_X87_NAN*/
|
151
|
+
/*#define Z_COMPILER_CONSTANT_UCHAR_BITS*/
|
152
|
+
/*#define Z_COMPILER_CONSTANT_UCHAR_SIZE*/
|
153
|
+
/*#define Z_COMPILER_CONSTANT_UCHAR_MAXIMUM*/
|
154
|
+
/*#define Z_COMPILER_CONSTANT_USHORT_BITS*/
|
155
|
+
/*#define Z_COMPILER_CONSTANT_USHORT_SIZE*/
|
156
|
+
/*#define Z_COMPILER_CONSTANT_USHORT_MAXIMUM*/
|
157
|
+
/*#define Z_COMPILER_CONSTANT_UINT_BITS*/
|
158
|
+
/*#define Z_COMPILER_CONSTANT_UINT_SIZE*/
|
159
|
+
/*#define Z_COMPILER_CONSTANT_UINT_MAXIMUM*/
|
160
|
+
/*#define Z_COMPILER_CONSTANT_ULONG_BITS*/
|
161
|
+
/*#define Z_COMPILER_CONSTANT_ULONG_SIZE*/
|
162
|
+
/*#define Z_COMPILER_CONSTANT_ULONG_MAXIMUM*/
|
163
|
+
/*#define Z_COMPILER_CONSTANT_ULLONG_BITS*/
|
164
|
+
/*#define Z_COMPILER_CONSTANT_ULLONG_SIZE*/
|
165
|
+
/*#define Z_COMPILER_CONSTANT_ULLONG_MAXIMUM*/
|
166
|
+
/*#define Z_COMPILER_CONSTANT_SCHAR_BITS*/
|
167
|
+
/*#define Z_COMPILER_CONSTANT_SCHAR_SIZE*/
|
168
|
+
/*#define Z_COMPILER_CONSTANT_SCHAR_MINIMUM*/
|
169
|
+
/*#define Z_COMPILER_CONSTANT_SCHAR_MAXIMUM*/
|
170
|
+
/*#define Z_COMPILER_CONSTANT_SSHORT_BITS*/
|
171
|
+
/*#define Z_COMPILER_CONSTANT_SSHORT_SIZE*/
|
172
|
+
/*#define Z_COMPILER_CONSTANT_SSHORT_MINIMUM*/
|
173
|
+
/*#define Z_COMPILER_CONSTANT_SSHORT_MAXIMUM*/
|
174
|
+
/*#define Z_COMPILER_CONSTANT_SINT_BITS*/
|
175
|
+
/*#define Z_COMPILER_CONSTANT_SINT_SIZE*/
|
176
|
+
/*#define Z_COMPILER_CONSTANT_SINT_MINIMUM*/
|
177
|
+
/*#define Z_COMPILER_CONSTANT_SINT_MAXIMUM*/
|
178
|
+
/*#define Z_COMPILER_CONSTANT_SLONG_BITS*/
|
179
|
+
/*#define Z_COMPILER_CONSTANT_SLONG_SIZE*/
|
180
|
+
/*#define Z_COMPILER_CONSTANT_SLONG_MINIMUM*/
|
181
|
+
/*#define Z_COMPILER_CONSTANT_SLONG_MAXIMUM*/
|
182
|
+
/*#define Z_COMPILER_CONSTANT_SLLONG_BITS*/
|
183
|
+
/*#define Z_COMPILER_CONSTANT_SLLONG_SIZE*/
|
184
|
+
/*#define Z_COMPILER_CONSTANT_SLLONG_MINIMUM*/
|
185
|
+
/*#define Z_COMPILER_CONSTANT_SLLONG_MAXIMUM*/
|
186
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT_BITS*/
|
187
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT_SIZE*/
|
188
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT_INFINITY*/
|
189
|
+
/*#define Z_COMPILER_CONSTANT_FLOAT_NAN*/
|
190
|
+
/*#define Z_COMPILER_CONSTANT_DOUBLE_BITS*/
|
191
|
+
/*#define Z_COMPILER_CONSTANT_DOUBLE_SIZE*/
|
192
|
+
/*#define Z_COMPILER_CONSTANT_DOUBLE_INFINITY*/
|
193
|
+
/*#define Z_COMPILER_CONSTANT_DOUBLE_NAN*/
|
194
|
+
/*#define Z_COMPILER_CONSTANT_LDOUBLE_BITS*/
|
195
|
+
/*#define Z_COMPILER_CONSTANT_LDOUBLE_SIZE*/
|
196
|
+
/*#define Z_COMPILER_CONSTANT_LDOUBLE_INFINITY*/
|
197
|
+
/*#define Z_COMPILER_CONSTANT_LDOUBLE_NAN*/
|
198
|
+
/*#define Z_COMPILER_CONSTANT_USIZE_BITS*/
|
199
|
+
/*#define Z_COMPILER_CONSTANT_USIZE_SIZE*/
|
200
|
+
/*#define Z_COMPILER_CONSTANT_SSIZE_BITS*/
|
201
|
+
/*#define Z_COMPILER_CONSTANT_SSIZE_SIZE*/
|
202
|
+
/*#define Z_COMPILER_CONSTANT_POINTER_BITS*/
|
203
|
+
/*#define Z_COMPILER_CONSTANT_POINTER_SIZE*/
|
204
|
+
|
205
|
+
/* MARK: - Built-in magic constants */
|
206
|
+
|
207
|
+
/*#define Z_COMPILER_MAGIC_CONSTANT_MANGLED_FUNCTION_NAME*/
|
208
|
+
|
209
|
+
/* MARK: - Built-in macros: Struture */
|
210
|
+
|
211
|
+
#define Z_COMPILER_MACRO_OFFSET_OF __builtin_offsetof
|
212
|
+
|
213
|
+
/* MARK: - Built-in macros: VAL */
|
214
|
+
|
215
|
+
/*#define Z_COMPILER_MACRO_VAL_INITIALIZE(object, last_parameter)*/
|
216
|
+
/*#define Z_COMPILER_MACRO_VAL_FINALIZE(object)*/
|
217
|
+
/*#define Z_COMPILER_MACRO_VAL_READ(object, type)*/
|
218
|
+
/*#define Z_COMPILER_MACRO_VAL_COPY(object, output)*/
|
219
|
+
|
220
|
+
/* MARK: - Built-in types */
|
221
|
+
|
222
|
+
/*#define Z_COMPILER_TYPE_UINT8*/
|
223
|
+
/*#define Z_COMPILER_TYPE_UINT16*/
|
224
|
+
/*#define Z_COMPILER_TYPE_UINT32*/
|
225
|
+
/*#define Z_COMPILER_TYPE_UINT64*/
|
226
|
+
/*#define Z_COMPILER_TYPE_UINT128*/
|
227
|
+
/*#define Z_COMPILER_TYPE_SINT8*/
|
228
|
+
/*#define Z_COMPILER_TYPE_SINT16*/
|
229
|
+
/*#define Z_COMPILER_TYPE_SINT32*/
|
230
|
+
/*#define Z_COMPILER_TYPE_SINT64*/
|
231
|
+
/*#define Z_COMPILER_TYPE_SINT128*/
|
232
|
+
/*#define Z_COMPILER_TYPE_FLOAT16*/
|
233
|
+
/*#define Z_COMPILER_TYPE_FLOAT64*/
|
234
|
+
/*#define Z_COMPILER_TYPE_FLOAT128*/
|
235
|
+
/*#define Z_COMPILER_TYPE_FLOAT80_X87*/
|
236
|
+
/*#define Z_COMPILER_TYPE_FLOAT96_X87*/
|
237
|
+
/*#define Z_COMPILER_TYPE_FLOAT128_X87*/
|
238
|
+
|
239
|
+
/*#define Z_COMPILER_TYPE_VAL*/
|
240
|
+
|
241
|
+
/* MARK: - Suffix macros for built-in types */
|
242
|
+
|
243
|
+
/*#define Z_COMPILER_LITERAL_UINT8*/
|
244
|
+
/*#define Z_COMPILER_LITERAL_UINT16*/
|
245
|
+
/*#define Z_COMPILER_LITERAL_UINT32*/
|
246
|
+
/*#define Z_COMPILER_LITERAL_UINT64*/
|
247
|
+
/*#define Z_COMPILER_LITERAL_UINT128*/
|
248
|
+
/*#define Z_COMPILER_LITERAL_SINT8*/
|
249
|
+
/*#define Z_COMPILER_LITERAL_SINT16*/
|
250
|
+
/*#define Z_COMPILER_LITERAL_SINT32*/
|
251
|
+
/*#define Z_COMPILER_LITERAL_SINT64*/
|
252
|
+
/*#define Z_COMPILER_LITERAL_SINT128*/
|
253
|
+
/*#define Z_COMPILER_LITERAL_FLOAT16*/
|
254
|
+
/*#define Z_COMPILER_LITERAL_FLOAT32*/
|
255
|
+
/*#define Z_COMPILER_LITERAL_FLOAT64*/
|
256
|
+
/*#define Z_COMPILER_LITERAL_FLOAT128*/
|
257
|
+
/*#define Z_COMPILER_LITERAL_FLOAT80_X87*/
|
258
|
+
/*#define Z_COMPILER_LITERAL_FLOAT96_X87*/
|
259
|
+
/*#define Z_COMPILER_LITERAL_FLOAT128_X87*/
|
260
|
+
|
261
|
+
/* MARK: - Built-in functions: Atomic operations */
|
262
|
+
|
263
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_ADD_THEN_GET*/
|
264
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_AND_THEN_GET*/
|
265
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_DECREMENT_THEN_GET*/
|
266
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_ADD*/
|
267
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_AND*/
|
268
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_DECREMENT*/
|
269
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_INCREMENT*/
|
270
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_NAND*/
|
271
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_NOT*/
|
272
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_OR*/
|
273
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_SET*/
|
274
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_SUBTRACT*/
|
275
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_GET_THEN_XOR*/
|
276
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_INCREMENT_THEN_GET*/
|
277
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_NAND_THEN_GET*/
|
278
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_NOT_THEN_GET*/
|
279
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_OR_THEN_GET*/
|
280
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_SET_IF_EQUAL*/
|
281
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_SUBTRACT_THEN_GET*/
|
282
|
+
/*#define Z_COMPILER_FUNCTION_UINT8_ATOMIC_XOR_THEN_GET*/
|
283
|
+
|
284
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_ADD_THEN_GET*/
|
285
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_AND_THEN_GET*/
|
286
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_DECREMENT_THEN_GET*/
|
287
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_ADD*/
|
288
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_AND*/
|
289
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_DECREMENT*/
|
290
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_INCREMENT*/
|
291
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_NAND*/
|
292
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_NOT*/
|
293
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_OR*/
|
294
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_SET*/
|
295
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_SUBTRACT*/
|
296
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_GET_THEN_XOR*/
|
297
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_INCREMENT_THEN_GET*/
|
298
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_NAND_THEN_GET*/
|
299
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_NOT_THEN_GET*/
|
300
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_OR_THEN_GET*/
|
301
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_SET_IF_EQUAL*/
|
302
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_SUBTRACT_THEN_GET*/
|
303
|
+
/*#define Z_COMPILER_FUNCTION_UINT16_ATOMIC_XOR_THEN_GET*/
|
304
|
+
|
305
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_ADD_THEN_GET*/
|
306
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_AND_THEN_GET*/
|
307
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_DECREMENT_THEN_GET*/
|
308
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_ADD*/
|
309
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_AND*/
|
310
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_DECREMENT*/
|
311
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_INCREMENT*/
|
312
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_NAND*/
|
313
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_NOT*/
|
314
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_OR*/
|
315
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_SET*/
|
316
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_SUBTRACT*/
|
317
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_GET_THEN_XOR*/
|
318
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_INCREMENT_THEN_GET*/
|
319
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_NAND_THEN_GET*/
|
320
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_NOT_THEN_GET*/
|
321
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_OR_THEN_GET*/
|
322
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_SET_IF_EQUAL*/
|
323
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_SUBTRACT_THEN_GET*/
|
324
|
+
/*#define Z_COMPILER_FUNCTION_UINT32_ATOMIC_XOR_THEN_GET*/
|
325
|
+
|
326
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_ADD_THEN_GET*/
|
327
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_AND_THEN_GET*/
|
328
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_DECREMENT_THEN_GET*/
|
329
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_ADD*/
|
330
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_AND*/
|
331
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_DECREMENT*/
|
332
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_INCREMENT*/
|
333
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_NAND*/
|
334
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_NOT*/
|
335
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_OR*/
|
336
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_SET*/
|
337
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_SUBTRACT*/
|
338
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_GET_THEN_XOR*/
|
339
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_INCREMENT_THEN_GET*/
|
340
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_NAND_THEN_GET*/
|
341
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_NOT_THEN_GET*/
|
342
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_OR_THEN_GET*/
|
343
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_SET_IF_EQUAL*/
|
344
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_SUBTRACT_THEN_GET*/
|
345
|
+
/*#define Z_COMPILER_FUNCTION_UINT64_ATOMIC_XOR_THEN_GET*/
|
346
|
+
|
347
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_ADD_THEN_GET*/
|
348
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_AND_THEN_GET*/
|
349
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_DECREMENT_THEN_GET*/
|
350
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_ADD*/
|
351
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_AND*/
|
352
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_DECREMENT*/
|
353
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_INCREMENT*/
|
354
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_NAND*/
|
355
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_NOT*/
|
356
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_OR*/
|
357
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_SET*/
|
358
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_SUBTRACT*/
|
359
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_GET_THEN_XOR*/
|
360
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_INCREMENT_THEN_GET*/
|
361
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_NAND_THEN_GET*/
|
362
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_NOT_THEN_GET*/
|
363
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_OR_THEN_GET*/
|
364
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_SET_IF_EQUAL*/
|
365
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_SUBTRACT_THEN_GET*/
|
366
|
+
/*#define Z_COMPILER_FUNCTION_UINT128_ATOMIC_XOR_THEN_GET*/
|
367
|
+
|
368
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_ADD_THEN_GET*/
|
369
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_AND_THEN_GET*/
|
370
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_DECREMENT_THEN_GET*/
|
371
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_ADD*/
|
372
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_AND*/
|
373
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_DECREMENT*/
|
374
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_INCREMENT*/
|
375
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_NAND*/
|
376
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_NOT*/
|
377
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_OR*/
|
378
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_SET*/
|
379
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_SUBTRACT*/
|
380
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_GET_THEN_XOR*/
|
381
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_INCREMENT_THEN_GET*/
|
382
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_NAND_THEN_GET*/
|
383
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_NOT_THEN_GET*/
|
384
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_OR_THEN_GET*/
|
385
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_SET_IF_EQUAL*/
|
386
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_SUBTRACT_THEN_GET*/
|
387
|
+
/*#define Z_COMPILER_FUNCTION_SINT8_ATOMIC_XOR_THEN_GET*/
|
388
|
+
|
389
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_ADD_THEN_GET*/
|
390
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_AND_THEN_GET*/
|
391
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_DECREMENT_THEN_GET*/
|
392
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_ADD*/
|
393
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_AND*/
|
394
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_DECREMENT*/
|
395
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_INCREMENT*/
|
396
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_NAND*/
|
397
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_NOT*/
|
398
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_OR*/
|
399
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_SET*/
|
400
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_SUBTRACT*/
|
401
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_GET_THEN_XOR*/
|
402
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_INCREMENT_THEN_GET*/
|
403
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_NAND_THEN_GET*/
|
404
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_NOT_THEN_GET*/
|
405
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_OR_THEN_GET*/
|
406
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_SET_IF_EQUAL*/
|
407
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_SUBTRACT_THEN_GET*/
|
408
|
+
/*#define Z_COMPILER_FUNCTION_SINT16_ATOMIC_XOR_THEN_GET*/
|
409
|
+
|
410
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_ADD_THEN_GET*/
|
411
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_AND_THEN_GET*/
|
412
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_DECREMENT_THEN_GET*/
|
413
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_ADD*/
|
414
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_AND*/
|
415
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_DECREMENT*/
|
416
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_INCREMENT*/
|
417
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_NAND*/
|
418
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_NOT*/
|
419
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_OR*/
|
420
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_SET*/
|
421
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_SUBTRACT*/
|
422
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_GET_THEN_XOR*/
|
423
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_INCREMENT_THEN_GET*/
|
424
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_NAND_THEN_GET*/
|
425
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_NOT_THEN_GET*/
|
426
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_OR_THEN_GET*/
|
427
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_SET_IF_EQUAL*/
|
428
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_SUBTRACT_THEN_GET*/
|
429
|
+
/*#define Z_COMPILER_FUNCTION_SINT32_ATOMIC_XOR_THEN_GET*/
|
430
|
+
|
431
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_ADD_THEN_GET*/
|
432
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_AND_THEN_GET*/
|
433
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_DECREMENT_THEN_GET*/
|
434
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_ADD*/
|
435
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_AND*/
|
436
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_DECREMENT*/
|
437
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_INCREMENT*/
|
438
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_NAND*/
|
439
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_NOT*/
|
440
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_OR*/
|
441
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_SET*/
|
442
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_SUBTRACT*/
|
443
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_GET_THEN_XOR*/
|
444
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_INCREMENT_THEN_GET*/
|
445
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_NAND_THEN_GET*/
|
446
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_NOT_THEN_GET*/
|
447
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_OR_THEN_GET*/
|
448
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_SET_IF_EQUAL*/
|
449
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_SUBTRACT_THEN_GET*/
|
450
|
+
/*#define Z_COMPILER_FUNCTION_SINT64_ATOMIC_XOR_THEN_GET*/
|
451
|
+
|
452
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_ADD_THEN_GET*/
|
453
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_AND_THEN_GET*/
|
454
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_DECREMENT_THEN_GET*/
|
455
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_ADD*/
|
456
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_AND*/
|
457
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_DECREMENT*/
|
458
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_INCREMENT*/
|
459
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_NAND*/
|
460
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_NOT*/
|
461
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_OR*/
|
462
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_SET*/
|
463
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_SUBTRACT*/
|
464
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_GET_THEN_XOR*/
|
465
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_INCREMENT_THEN_GET*/
|
466
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_NAND_THEN_GET*/
|
467
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_NOT_THEN_GET*/
|
468
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_OR_THEN_GET*/
|
469
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_SET_IF_EQUAL*/
|
470
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_SUBTRACT_THEN_GET*/
|
471
|
+
/*#define Z_COMPILER_FUNCTION_SINT128_ATOMIC_XOR_THEN_GET*/
|
472
|
+
|
473
|
+
#endif /* _Z_inspection_modules_compiler_SCCZ80_H_ */
|