Dear Philipp,

>> [...] anyway I can
>> suggest some very small corrections:
>
> Implemented in sdcc 2.9.1 #5422.

Great, but...I did not expect such a hurried inclusion...
- the comment wrongly saying "DE = less significant word..." wasn't
changed in "HL =...";
- one more byte could be saved by replacing:

36         ld      l,#0
37         ld      a,b
38         ld      b,#16
39
42         or      a
43         jr      NZ,2$

with

36         xor     a
37         ld      l,a
38         xor     b
39         ld      b,#16
42
43         jr      NZ,2$

Regards,
Marco

PS: I've cleaned __divu16 form div.s, it's 30% faster now... I do only
have to test it a little bit more... Should I send the next patch here? or
to another ML?

-- 
http://bodrato.it/





------------------------------------------------------------------------------
_______________________________________________
Sdcc-user mailing list
Sdcc-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/sdcc-user

Reply via email to