mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
* remote.c (fetch_register_using_p): Construct 'p' packet in a
manner independent of the host byte order.
This commit is contained in:
@ -3176,9 +3176,10 @@ fetch_register_using_p (int regnum)
|
||||
char regp[MAX_REGISTER_SIZE];
|
||||
int i;
|
||||
|
||||
buf[0] = 'p';
|
||||
bin2hex((char *) ®num, &buf[1], sizeof(regnum));
|
||||
buf[9] = 0;
|
||||
p = buf;
|
||||
*p++ = 'p';
|
||||
p += hexnumstr (p, regnum);
|
||||
*p++ = '\0';
|
||||
remote_send (buf, rs->remote_packet_size);
|
||||
if (buf[0] != 0 && buf[0] != 'E') {
|
||||
p = buf;
|
||||
|
Reference in New Issue
Block a user