qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Umamaheswararao Karyampudi <kumrao2003@yahoo.com>
To: "carlo.andreoli@tiscali.it" <carlo.andreoli@tiscali.it>,
	qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] Printing bogus values in ne2000_asic_ioport_read()/ ne2000_receive()
Date: Fri, 3 Mar 2006 14:33:06 -0800 (PST)	[thread overview]
Message-ID: <20060303223306.20121.qmail@web36802.mail.mud.yahoo.com> (raw)
In-Reply-To: <23402837.1141207604525.JavaMail.root@ps19>

[-- Attachment #1: Type: text/plain, Size: 2154 bytes --]

Thanks Carlo. Now it works after changing it to . and Thanks all for the replies.

Uma
"carlo.andreoli@tiscali.it" <carlo.andreoli@tiscali.it> wrote: Regarding the bogus numbers occasionally printed, you can see that the 
leading
ffs are printed when the character has its bit7 set to 1. This occurs 
because in
      printf("%02x ", s[i]);
the expected argument for %02x is an integer, and since the actual 
argument is
a (signed) character, the compiler promotes it to an integer extending 
the sign bit.
You can simply write instead
      printf("%02x ", (unsigned char)s[i]);
and the problem should disappear, since in this case the promotion to 
an integer
adds non-significative 0s that are ignored when printig

Carlo

----Messaggio originale----
Da: kumrao2003@yahoo.com
Data: 25/02/2006 19.29
A: 
Ogg: [Qemu-devel] Printing bogus values in ne2000_asic_ioport_read()/ 
ne2000_receive()

Hi,
I am using QEMU in one of my research projects. I
landed in a problem where I see bogus numbers being
printed when I printed the packet/each word that is
received from ne2000.

In ne2000_receive(), I copied the packet received to a
static char [] and printed the packet using
 static void print_packet(char *s, int len)
{
  int i,j;
  for (i=0;i
      if (i%20 == 0)
          printf("\n");
      printf("%02x ", s[i]);
  }
          printf("\n");
}
And some bytes it prints as fffffffff
instead of just the last byte.
For eg:
52 54 00 12 34 56 00 ffffffff 4f 0a 46 05 08 00 45 00
00 ffffff80 00 00
40 00 40 01 ffffffbc 2b ffffffc0 ffffffa8 fffffffe
fffffffe ffffffc0 ffffffa8 ff




  
Tiscali ADSL 4 Mega Flat
Naviga senza limiti con l'unica Adsl a 4 Mega di velocità a soli 19,95 € al mese!
Attivala subito e hai GRATIS 2 MESI e l'ATTIVAZIONE. 
http://abbonati.tiscali.it/banner/middlepagetracking.html?c=webmailadsl&r=http://abbonati.tiscali.it/adsl/sa/4flat_tc/&a=webmail&z=webmail&t=14


_______________________________________________
Qemu-devel mailing list
Qemu-devel@nongnu.org
http://lists.nongnu.org/mailman/listinfo/qemu-devel


		
---------------------------------
 Yahoo! Mail
 Use Photomail to share photos without annoying attachments.

[-- Attachment #2: Type: text/html, Size: 2700 bytes --]

  reply	other threads:[~2006-03-03 22:33 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-03-01 10:06 [Qemu-devel] Printing bogus values in ne2000_asic_ioport_read()/ ne2000_receive() carlo.andreoli
2006-03-03 22:33 ` Umamaheswararao Karyampudi [this message]
  -- strict thread matches above, loose matches on Subject: below --
2006-02-26 18:01 Umamaheswararao Karyampudi
2006-03-03 19:28 ` Brian Wheeler
2006-02-25 18:29 Umamaheswararao Karyampudi
2006-03-01 18:47 ` Joseph Stewart
2006-03-01 23:22 ` Chris Wilson
2006-03-02 10:40 ` Alessandro Iurlano
2006-02-25  4:13 Umamaheswararao Karyampudi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20060303223306.20121.qmail@web36802.mail.mud.yahoo.com \
    --to=kumrao2003@yahoo.com \
    --cc=carlo.andreoli@tiscali.it \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).