1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-01-21 02:07:41 +00:00

SEL32: Add excess 64 floating point support to cpu instruction set.

Add sel32_fltpt.c subroutine set that handles 32/64 bit floating point
 arithmetic.  Also float/fix conversions.
This commit is contained in:
James C. Bevier 2019-07-17 21:39:18 -04:00 committed by Richard Cornwell
parent 56455e9808
commit 1dfd36c74a
3 changed files with 1834 additions and 309 deletions

File diff suppressed because it is too large Load Diff

View File

@ -326,6 +326,7 @@ extern DEBTAB dev_debug[];
#define C_BITS 0x00000003 /* byte number or hw, dw, dw flags bits 20 & 31 */
#define BIT0 0x80000000 /* general use for bit 0 testing */
#define BIT1 0x40000000 /* general use for bit 1 testing */
#define BIT2 0x20000000 /* general use for bit 2 testing */
#define MASK16 0x0000FFFF /* 16 bit address mask */
#define MASK19 0x0007FFFF /* 19 bit address mask */
#define MASK20 0x000FFFFF /* 20 bit address mask */

1190
SEL32/sel32_fltpt.c Normal file

File diff suppressed because it is too large Load Diff