x86: fix a bug that we misgenerated the the 8-bit imul with a constant
[ajla.git] / programs / acmd / defs.ajla
blob50fb2bda657f9f75c5f8befc5c4909babdaeec63
1 {*
2  * Copyright (C) 2024 Mikulas Patocka
3  *
4  * This file is part of Ajla.
5  *
6  * Ajla is free software: you can redistribute it and/or modify it under the
7  * terms of the GNU General Public License as published by the Free Software
8  * Foundation, either version 3 of the License, or (at your option) any later
9  * version.
10  *
11  * Ajla is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
13  * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along with
16  * Ajla. If not, see <https://www.gnu.org/licenses/>.
17  *}
19 unit defs;
21 const sort_name := 0;
22 const sort_extension := 1;
23 const sort_size := 2;
24 const sort_mtime := 3;
25 const sort_atime := 4;
26 const sort_ctime := 5;
27 const sort_inode := 6;
28 const sort_n := 7;
30 const sort_flag_case_sensitive := 0;
31 const sort_flag_reverse := 1;
33 const select_flag_files_only := 0;
34 const select_flag_case_sensitive := 1;
36 const view_goto_mode_line := 0;
37 const view_goto_mode_percents := 1;
38 const view_goto_mode_decimal_offset := 2;
39 const view_goto_mode_hexadecimal_offset := 3;
41 const view_search_mode_string := 0;
42 const view_search_mode_hexadecimal := 1;
44 const view_search_flag_case_sensitive := 0;
45 const view_search_flag_backwards := 1;
46 const view_search_flag_whole_words := 2;
48 const edit_goto_mode_line := 0;
49 const edit_goto_mode_percents := 1;
51 const edit_search_flag_case_sensitive := 0;
52 const edit_search_flag_backwards := 1;
53 const edit_search_flag_whole_words := 2;