mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
12 lines
501 B
Python
12 lines
501 B
Python
|
|
# Note that we DON'T define EZERO/EONE/ETWO to be fpvalue_t objects,
|
|
# because there is no way to make them read-only, which means EZERO
|
|
# could represent something entirely different from zero if the
|
|
# user mistakenly modifies it.
|
|
|
|
#<pycode(py_ieee)>
|
|
EZERO = b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
|
|
EONE = b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\xFF\x3F"
|
|
ETWO = b"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x00\x40"
|
|
#</pycode(py_ieee)>
|