Labels are case sensitive; you have @Count and @count which are two different variables.
R0>=R1
R0=R0-R1
These are not Hack instructions.  You need to do comparisons by subtracting and using conditional jumps.  What you want is something like.
@R0
D-M
@R1
D=D-M
@END
D;JLT
I highly recommend that you start by writing the pseudocode as comments and then fill in the ASM that does the pseudocode.
// quotient = 0
    @R2 // quotient
    M=0
// while dividend >= divisor {
(LOOP)
    @R0 // dividend
    D=M
    @R1 // divisor
    D=D-M
    @END
    D;JLT
//     dividend = dividend - divisor
    more
    code
    here
//     quotient  = quotient  + 1
    more
    code
    here
// }
(END)
    @END
    0;JMP
--Mark