18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-or-later */ 28c2ecf20Sopenharmony_ci/* 38c2ecf20Sopenharmony_ci NetWinder Floating Point Emulator 48c2ecf20Sopenharmony_ci (c) Rebel.com, 1998-1999 58c2ecf20Sopenharmony_ci 68c2ecf20Sopenharmony_ci Direct questions, comments to Scott Bambrough <scottb@netwinder.org> 78c2ecf20Sopenharmony_ci 88c2ecf20Sopenharmony_ci 98c2ecf20Sopenharmony_ci 27/03/03 Ian Molton Clean up CONFIG_CPU 108c2ecf20Sopenharmony_ci*/ 118c2ecf20Sopenharmony_ci 128c2ecf20Sopenharmony_ci#ifndef __FPMODULE_H__ 138c2ecf20Sopenharmony_ci#define __FPMODULE_H__ 148c2ecf20Sopenharmony_ci 158c2ecf20Sopenharmony_ci#define REG_ORIG_R0 17 168c2ecf20Sopenharmony_ci#define REG_CPSR 16 178c2ecf20Sopenharmony_ci#define REG_PC 15 188c2ecf20Sopenharmony_ci#define REG_LR 14 198c2ecf20Sopenharmony_ci#define REG_SP 13 208c2ecf20Sopenharmony_ci#define REG_IP 12 218c2ecf20Sopenharmony_ci#define REG_FP 11 228c2ecf20Sopenharmony_ci#define REG_R10 10 238c2ecf20Sopenharmony_ci#define REG_R9 9 248c2ecf20Sopenharmony_ci#define REG_R9 9 258c2ecf20Sopenharmony_ci#define REG_R8 8 268c2ecf20Sopenharmony_ci#define REG_R7 7 278c2ecf20Sopenharmony_ci#define REG_R6 6 288c2ecf20Sopenharmony_ci#define REG_R5 5 298c2ecf20Sopenharmony_ci#define REG_R4 4 308c2ecf20Sopenharmony_ci#define REG_R3 3 318c2ecf20Sopenharmony_ci#define REG_R2 2 328c2ecf20Sopenharmony_ci#define REG_R1 1 338c2ecf20Sopenharmony_ci#define REG_R0 0 348c2ecf20Sopenharmony_ci 358c2ecf20Sopenharmony_ci#endif 36