Re: wildcard in a iie?
On Dec 23, 9:20 am, aiiad...@xxxxxxxxx wrote:
On Dec 22, 1:46 pm, jonnosan <jonno...@xxxxxxxxx> wrote:
I took a copy of the 2732 EPROM on the card, and it looks like
F974: A9 A0 LDA #$A0
F976: 91 02 C8 STA ($C802),Y
F979: D0 FB BNE $F976
won't it get stuck in a loop above?
Nice pick up. I can see I have a bug in my disassembler.
the single "STA($C802),Y should actually be:
STA ($02),Y
INY
so it will exit the loop when Y rolls over from 255 to 0.
.
Relevant Pages
- Re: IE Stuck
... I have been using IE 6, and the bug ... but its like stuck in a loop because it will jump ... it just clicks from Opening Page: ... continuously quick loop. ... (microsoft.public.windows.inetexplorer.ie6.browser) - Re: Bug in win xp: Auto-detaching modeless dialog.
... Destroying the dialog is important whether there is a bug or not. ... >I don't think that windows API cares about design flaws. ... >> The whole loop with a sleep in it is a colossal blunder. ... My program does some time consuming calculations and from ... (microsoft.public.vc.mfc) - Re: A Beginner:Why is my program always returning true?
... and see what happens to find the third bug. ... This loop needs to scan increasingly higher indexes in the two strings yet ... Here's a simple rewrite to clean up the loops (without fixing your final ... goal here is always clear bug-free code first, and efficiency second. ... (comp.lang.java.programmer) - Re: [PATCH] Avoid buffer overflows in get_user_pages()
... In particular, "len" is a signed int, and it is only checked at the ... So, if it is passed in as zero, the loop ... I think that, if get_user_pageshas been asked to grab zero pages, ... Which is a bug, and you want to catch it. ... (Linux-Kernel) - Re: strlen(), K+1: clarification
... for loop, the all-important for loop bound, rather than obscure it in ... means that you have a bug. ... Because of the design errors in the C ... a lot of errors in an interview if the interviewee admits/notices ... (comp.programming) |
|