代码搜索:math
找到约 10,000 项符合「math」的源代码
代码结果 10,000
www.eeworm.com/read/123043/14650577
ppt math.ppt
www.eeworm.com/read/222772/14674124
lib math.lib
;;; ARITHMETIC: Integer arithmetic routines.
ClearX:
ClearLoop:
mov @R0, #0
inc R0
djnz R2, ClearLoop
ret
IncX:
setb C
CarryX:
CarryLoop:
mov A, @R0
addc A, #0
www.eeworm.com/read/222772/14674138
doc math.doc
A R B I T R A R Y P R E C I S I O N M A T H R O U T I N E S
(0) Overview
To facilitate development of mathematical software on 8051-family of
processors, a set of routines has been deve
www.eeworm.com/read/222772/14674145
lib math.lib
;;; ARITHMETIC: Integer arithmetic routines.
ClearX:
ClearLoop:
mov @R0, #0
inc R0
djnz R2, ClearLoop
ret
CopyX:
CopyLoop:
mov A, @R1
inc R1
mov @R0, A
in
www.eeworm.com/read/222772/14674159
lib math.lib
Quo equ 60
Divisor equ 64
Op equ 68
Rem equ 72
Carry equ 72
Fract equ 76
Aux equ 80
Div1:
clr C
mov R0, #Op
mov R2, #4
acall ShiftX ;;; C:Op = Op*2;
mov R
www.eeworm.com/read/222772/14674202
h math.h
extern code ClearX, IncX, CarryX, CopyX, SubtractX
extern data SizeX, SizeY, ArgX, ArgY, ArgZ
extern code MultiplyX
www.eeworm.com/read/222772/14674203
s math.s
;;; ARITHMETIC: Integer arithmetic routines.
global ClearX:
1:
mov @R0, #0; inc R0
djnz R2, 1b
ret
global IncX:
setb C
global CarryX:
1:
mov A, @R0
addc A, #0
mov
www.eeworm.com/read/222703/14679494
h math.h
www.eeworm.com/read/122468/14688280
mdl math.mdl
Model {
Name "math"
Version 3.00
SimParamPage "Solver"
SampleTimeColors off
InvariantConstants off
WideVectorLines off
ShowLineWidths off
ShowPortDataTypes
www.eeworm.com/read/122442/14690047