forked from KolibriOS/kolibrios
1415df25a3
version 1.67.33 (Feb 20, 2009) [+] Added ERR directive that allows to signalize error from the source. version 1.67.32 (Feb 13, 2009) [+] Allowed single quote character to be put inside the number value, to help improve long numbers readability. version 1.67.31 (Feb 11, 2009) [-] Fixed floating point converter to no longer generate NaN in some cases, and corrected denormal numbers generation. version 1.67.30 (Feb 08, 2009) [+] Added missing Intel SSE4 instructions. [+] Added SSE4a (EXTRQ/INSERTQ/MOVNTSD/MOVNTSS) instructions. [+] Added FSTENVW/FSTENVD/FSAVEW/FSAVED mnemonics. Visit http://flatassembler.net/ for more information. git-svn-id: svn://kolibrios.org@1039 a494cfbc-eb01-0410-851d-a64ba20cac60
51 lines
2.4 KiB
PHP
51 lines
2.4 KiB
PHP
|
|
; flat assembler core
|
|
; Copyright (c) 1999-2009, Tomasz Grysztar.
|
|
; All rights reserved.
|
|
|
|
_out_of_memory db 'out of memory',0
|
|
_stack_overflow db 'out of stack space',0
|
|
_main_file_not_found db 'source file not found',0
|
|
_unexpected_end_of_file db 'unexpected end of file',0
|
|
_code_cannot_be_generated db 'code cannot be generated',0
|
|
_format_limitations_exceeded db 'format limitations exceeded',0
|
|
_invalid_definition db 'invalid definition provided',0
|
|
_write_failed db 'write failed',0
|
|
_file_not_found db 'file not found',0
|
|
_error_reading_file db 'error reading file',0
|
|
_invalid_file_format db 'invalid file format',0
|
|
_invalid_macro_arguments db 'invalid macro arguments',0
|
|
_incomplete_macro db 'incomplete macro',0
|
|
_unexpected_characters db 'unexpected characters',0
|
|
_invalid_argument db 'invalid argument',0
|
|
_illegal_instruction db 'illegal instruction',0
|
|
_invalid_operand db 'invalid operand',0
|
|
_invalid_operand_size db 'invalid size of operand',0
|
|
_operand_size_not_specified db 'operand size not specified',0
|
|
_operand_sizes_do_not_match db 'operand sizes do not match',0
|
|
_invalid_address_size db 'invalid size of address value',0
|
|
_address_sizes_do_not_agree db 'address sizes do not agree',0
|
|
_prefix_conflict db 'disallowed combination of registers',0
|
|
_long_immediate_not_encodable db 'not encodable with long immediate',0
|
|
_relative_jump_out_of_range db 'relative jump out of range',0
|
|
_invalid_expression db 'invalid expression',0
|
|
_invalid_address db 'invalid address',0
|
|
_invalid_value db 'invalid value',0
|
|
_value_out_of_range db 'value out of range',0
|
|
_undefined_symbol db 'undefined symbol',0
|
|
_symbol_out_of_scope_1 db 'symbol',0
|
|
_symbol_out_of_scope_2 db 'out of scope',0
|
|
_invalid_use_of_symbol db 'invalid use of symbol',0
|
|
_name_too_long db 'name too long',0
|
|
_invalid_name db 'invalid name',0
|
|
_reserved_word_used_as_symbol db 'reserved word used as symbol',0
|
|
_symbol_already_defined db 'symbol already defined',0
|
|
_missing_end_quote db 'missing end quote',0
|
|
_missing_end_directive db 'missing end directive',0
|
|
_unexpected_instruction db 'unexpected instruction',0
|
|
_extra_characters_on_line db 'extra characters on line',0
|
|
_section_not_aligned_enough db 'section is not aligned enough',0
|
|
_setting_already_specified db 'setting already specified',0
|
|
_data_already_defined db 'data already defined',0
|
|
_too_many_repeats db 'too many repeats',0
|
|
_invoked_error db 'error directive invoked in source file',0 |