From the [dbase spec](https://www.dbase.com/Knowledgebase/INT/db7_file_fmt.htm) ``` I | Long | 4 bytes. Leftmost bit used to indicate sign, 0 negative. ``` A zero sign bit means _negative_ numbers. E.g. not a regular julia/C `Int32` at all: ```julia julia> bitstring(Int32(-1)) "11111111111111111111111111111111" ```