diff options
Diffstat (limited to 'packages/novice/novice/index.ts')
-rw-r--r-- | packages/novice/novice/index.ts | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/packages/novice/novice/index.ts b/packages/novice/novice/index.ts index 241a07b..ed4301b 100644 --- a/packages/novice/novice/index.ts +++ b/packages/novice/novice/index.ts @@ -7,8 +7,8 @@ import { AliasContext, AliasFields, AliasSpec, Assembly, BaseSymbols, Fields, RegIdentifier, RegisterOperand, Section, StringOperand, Symbols, SymbTable } from './isa'; import { Debugger, Memory, Simulator } from './simulator'; -import { forceUnsigned, maskTo, maxUnsignedVal, padStr, sextTo, - fmtHex } from './util'; +import { forceUnsigned, maskTo, maxUnsignedVal, padStr, range, sextTo, + fmtBin, fmtBinOrHex, fmtHex } from './util'; export { //// assembler Assembler, AssemblerConfig, getParser, getGenerator, getOpSpec, @@ -30,4 +30,5 @@ export { //// assembler //// simulator Debugger, Simulator, Memory, //// util - forceUnsigned, maskTo, maxUnsignedVal, sextTo, padStr, fmtHex }; + forceUnsigned, maskTo, maxUnsignedVal, range, sextTo, padStr, + fmtBin, fmtBinOrHex, fmtHex }; |