OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 %%{ | 7 %%{ |
8 machine one_instruction_x86_32; | 8 machine one_instruction_x86_32; |
9 alphtype unsigned char; | 9 alphtype unsigned char; |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 action rel16_operand_begin { } | 30 action rel16_operand_begin { } |
31 action rel16_operand_end { } | 31 action rel16_operand_end { } |
32 action rel32_operand_begin { } | 32 action rel32_operand_begin { } |
33 action rel32_operand_end { } | 33 action rel32_operand_end { } |
34 | 34 |
35 include decode_x86_32 "one-valid-instruction-x86_32.rl"; | 35 include decode_x86_32 "one-valid-instruction-x86_32.rl"; |
36 | 36 |
37 main := one_instruction; | 37 main := one_instruction; |
38 | 38 |
39 }%% | 39 }%% |
OLD | NEW |