From mint-bounce@lists.fishpool.fi Thu Jul 23 17:24:27 2009 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=iypqPV7gWqgvrJtSX+2ZXZuMakGnx1yNkCj3zX6MH+Q=; b=Po+dAJ66MsAiAZLooEZJJs3ekPtmnwVKmT7qmirAdzOiY1bM8nyCCUiYRm7dsskfCV hdQ5E/9yfaAoqr/P4yibg3NWghFBmwaSwgpjvAg6q/KOpPtICWg+cTsdMBlsaojhPZmr WLz7yHRCC9DqdfbbFlihLaajF/tLj3rRZa9XQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=c6AlPZcCB7geww8N+TYcpUAUdehfwyleAlGpF9ofKx7IDfw3+55R8r33Uwn8olierG KSmY+OoJsCTR41cIceSLvqzygn61h58P3fAGm0wdwqHggEJcK8X1F8F6GXIXdt6Jfidm XMHyieCWGVAppGWrllQeDpSwYrBbJ6XMTF/zk= MIME-Version: 1.0 In-Reply-To: References: Date: Thu, 23 Jul 2009 23:20:48 +0200 Message-ID: <752526d20907231420g5f9fbb8h57860ebea8eabf88@mail.gmail.com> Subject: Re: [MiNT] XaAES From: =?ISO-8859-1?Q?K=E5re_Andersen?= To: Lonny Pursell Cc: "[MiNT] Mailing-List" Content-Type: text/plain; charset=ISO-8859-1 X-ecartis-version: Ecartis v1.0.0 Sender: mint-bounce@lists.fishpool.fi Errors-to: mint-bounce@lists.fishpool.fi X-original-sender: kareandersen@gmail.com Precedence: bulk List-help: List-unsubscribe: List-Id: X-List-ID: List-subscribe: List-owner: List-post: Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by mail.sparemint.org id n6NLORR6024108 On Thu, Jul 23, 2009 at 7:04 PM, Lonny Pursell wrote: > on 7/23/09 12:52 PM, Kåre Andersen wrote: > >> >> >> On 23. juli 2009, at 18.32, Lonny Pursell wrote: >>> Speaking of keyboard.c >>> >>> This section: >>> >>> # if 0 >>>    /* bit 2 of conterm variable decides, whether we >>>     * put the shift status to the buffer or not. >>>     */ >>>    if ((*(uchar *)0x0484L & 0x04) == 0) >>>        c0 = 0; >>> # endif >>> >>> Shouldn't this be bit 3 ?? >>> >>> >>> -- >>> Lonny Pursell    http://www.bright.net/~gfabasic/ >> >> Nope, count from 0 :) >> >> Also, #if 0 #endif is, the c preproccessor equivalent of >> remming out a bunch of lines... > > Is not 0x04 -> %100 ? > That's the bit for the system bell. > > I know it's used by the preproccessor but still the bit for bconin() would > be 0x08 -> %1000 > > Have a look at some memory map for 'conterm'. Ah, now I see what you mean, and yes of course you are right... Still the code is not in effect (not compiled in), so it should not affect anything. Snooped a bit around in the kernel sources, but have not been able to locate the shift enabling bit anywhere else. Its probably there tho :) /Kåre