| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file libyasm/arch.h | 2 * \file libyasm/arch.h |
| 3 * \brief YASM architecture interface. | 3 * \brief YASM architecture interface. |
| 4 * | 4 * |
| 5 * \rcs | |
| 6 * $Id: arch.h 1889 2007-07-08 05:31:59Z peter $ | |
| 7 * \endrcs | |
| 8 * | |
| 9 * \license | 5 * \license |
| 10 * Copyright (C) 2002-2007 Peter Johnson | 6 * Copyright (C) 2002-2007 Peter Johnson |
| 11 * | 7 * |
| 12 * Redistribution and use in source and binary forms, with or without | 8 * Redistribution and use in source and binary forms, with or without |
| 13 * modification, are permitted provided that the following conditions | 9 * modification, are permitted provided that the following conditions |
| 14 * are met: | 10 * are met: |
| 15 * - Redistributions of source code must retain the above copyright | 11 * - Redistributions of source code must retain the above copyright |
| 16 * notice, this list of conditions and the following disclaimer. | 12 * notice, this list of conditions and the following disclaimer. |
| 17 * - Redistributions in binary form must reproduce the above copyright | 13 * - Redistributions in binary form must reproduce the above copyright |
| 18 * notice, this list of conditions and the following disclaimer in the | 14 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 #define yasm_arch_ea_destroy(arch, ea) \ | 486 #define yasm_arch_ea_destroy(arch, ea) \ |
| 491 ((yasm_arch_base *)arch)->module->ea_destroy(ea) | 487 ((yasm_arch_base *)arch)->module->ea_destroy(ea) |
| 492 #define yasm_arch_ea_print(arch, ea, f, i) \ | 488 #define yasm_arch_ea_print(arch, ea, f, i) \ |
| 493 ((yasm_arch_base *)arch)->module->ea_print(ea, f, i) | 489 ((yasm_arch_base *)arch)->module->ea_print(ea, f, i) |
| 494 #define yasm_arch_create_empty_insn(arch, line) \ | 490 #define yasm_arch_create_empty_insn(arch, line) \ |
| 495 ((yasm_arch_base *)arch)->module->create_empty_insn(arch, line) | 491 ((yasm_arch_base *)arch)->module->create_empty_insn(arch, line) |
| 496 | 492 |
| 497 #endif | 493 #endif |
| 498 | 494 |
| 499 #endif | 495 #endif |
| OLD | NEW |