cshred fixed

From: Andrew Kennedy (andrewkennedy2_at_LOGev1.net)
Date: 02/13/04


Date: Fri, 13 Feb 2004 15:42:44 -0000


Changes to cshred.asm, now works properly and no increase
in file size.
             
Many thanks to all those who have helped me.

Andy Kennedy

random db 64000 dup(?) ; keep com file small

CODESEG

   STARTUPCODE

        mov bx,00h
             
zero_out: ; initialize to zero
        mov [random + bx],00h
        inc bx
        cmp bx,64000
        jnz zero_out



Relevant Pages

  • Re: deep cloning, how?
    ... If #dup calls self.class.new then you obviously get a new and hence unfrozen object. ... A generic #dup must behave this way; it doesn't know what the newmethod arguments are in any particular subclass of Object. ... def initialize ... Here the logic of how to build a NewsReader, including building all the associated helper objects, is built into the #initialize method. ...
    (comp.lang.ruby)
  • Re: deep cloning, how?
    ... described above is that dup defined in a subclass should initialize it ... You cannot reset frozen state - for good reasons. ...
    (comp.lang.ruby)
  • Re: deep cloning, how?
    ... irb:002:1> def initialize ... puts "calling dup" ... puts "calling clone" ... VALUE obj; ...
    (comp.lang.ruby)
  • Re: Delete Row meeting a Criteria
    ... Sounds like "DUP" is the result of a formula looking for duplicates. ... If so why not change this to 0 (zero) and sort by that column, and then delete the rows with 0? ...
    (microsoft.public.excel.programming)
  • Re: deep cloning, how?
    ... described above is that dup defined in a subclass should initialize it ... I'd certainly agree this is an area where Ruby's documentation falls ... I don't think you'll disagree that 99% of the ...
    (comp.lang.ruby)