[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: ROL Instruction
- Subject: Re: ROL Instruction
- From: lscharen@d.umn.edu
- Date: Wed, 17 Mar 2004 18:28:27 +0000 (UTC)
- Newsgroups: comp.sys.apple2
- Organization: University of Minnesota, Twin Cities Campus
- Xref: archiver1.google.com comp.sys.apple2:4464
Here's my entry (11 bytes)
sta <00 ; 2 bytes
and #$F0 ; 4 bytes
clc ; 5 bytes
adc <00 ; 6 bytes
rol ; 7 bytes
rol ; 8 bytes
rol ; 9 bytes
rol ; 10 bytes
Oops! The total count is 11 bytes, of course. The adc <00 should count for 2.
Can anyone do better than 11?
-Lucas