hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit fb0bb0b4b9f3100628ad69ae2cf18ffc2d08c04f
parent f1688232e5fdf72bb19fd201f08f2dac17c72ad1
Author: Bor Grošelj Simić <bgs@turminal.net>
Date:   Mon, 10 Oct 2022 22:40:08 +0200

format::elf: fix HIPROC and LOPROC constants

Signed-off-by: Bor Grošelj Simić <bgs@turminal.net>

Diffstat:
Mformat/elf/types.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/format/elf/types.ha b/format/elf/types.ha @@ -550,9 +550,9 @@ export type sht = enum u32 { // Environment-specific use HIOS = 0x6FFFFFFF, // Processor-specific use - LOPROC = 0x7000000, + LOPROC = 0x70000000, // Processor-specific use - HIPROC = 0x7FFFFFF, + HIPROC = 0x7FFFFFFF, }; // Section flags