URL
https://opencores.org/ocsvn/zipcpu/zipcpu/trunk
Subversion Repositories zipcpu
[/] [zipcpu/] [trunk/] [sw/] [lib/] [divu.S] - Rev 53
Go to most recent revision | Compare with Previous | Blame | View Log
;
;
;
;
divu: ; Given R0,R1, computer R0 = R0/R1 and R1 = R0%R1
TST -1,R1
; BNZ divu_valid_divide
CLR.Z R0 ; Should be a divide by zero error / trap
RETN.Z
divu_valid_divide:
SUB 1,SP
STO R3,1(SP)
;
LDI 1,R2 ; Here's where we record the bit we are working on
CLR R3 ; Here's where we build our result
; Our original loop rejoin point, before a touch of unrolling
CMP R1,R0
BRC divu_prep_next_bit
TST -1,R1
BLT divu_top_bit_set
divu_rotate_up_r1:
LSL 1,R2
LSL 1,R1
/*
CMP R1,R0
BRC divu_prep_next_bit
TST -1,R1
BGT divu_rotate_up_r1
*/
BLT divu_top_bit_set
CMP R1,R0
BRC divu_prep_next_bit
;
LSL 1,R2
LSL 1,R1
BLT divu_top_bit_set
CMP R1,R0
BRC divu_prep_next_bit
;
LSL 1,R2
LSL 1,R1
BLT divu_top_bit_set
CMP R1,R0
BRC divu_prep_next_bit
;
LSL 1,R2
LSL 1,R1
BLT divu_top_bit_set
CMP R1,R0
BRC divu_prep_next_bit
BRA divu_rotate_up_r1
divu_top_bit_set:
CMP R1,R0
BRC divu_prep_next_bit
SUB R1,R0
OR R2,R3
divu_prep_next_bit:
LSR 1,R1
LSR 1,R2
BZ divu_record_result
;
divu_next_loop:
CMP R1,R0 ;
SUB.GE R1,R0 ; We also switch to signed arithmetic, since
OR.GE R2,R3 ; after the first bit, we are signed
LSR 1,R1
LSR 1,R2
BZ divu_record_result
;
CMP R1,R0
SUB.GE R1,R0
OR.GE R2,R3
LSR 1,R1
LSR 1,R2
BZ divu_record_result
;
CMP R1,R0
SUB.GE R1,R0
OR.GE R2,R3
LSR 1,R1
LSR 1,R2
BZ divu_record_result
;
CMP R1,R0
SUB.GE R1,R0
OR.GE R2,R3
LSR 1,R1
LSR 1,R2
BNZ divu_next_loop
divu_record_result:
MOV R0,R1
MOV R3,R0
LOD 1(SP),R3
ADD 1,SP
RETN
Go to most recent revision | Compare with Previous | Blame | View Log