1993-02-01 23:53:24 +01:00
|
|
|
/* Target-machine dependent code for Zilog Z8000, for GDB.
|
1993-02-05 19:07:09 +01:00
|
|
|
Copyright (C) 1992,1993 Free Software Foundation, Inc.
|
1993-02-01 23:53:24 +01:00
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
/*
|
1993-02-01 23:53:24 +01:00
|
|
|
Contributed by Steve Chamberlain
|
1993-02-05 19:07:09 +01:00
|
|
|
sac@cygnus.com
|
1993-02-01 23:53:24 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
#include "frame.h"
|
|
|
|
#include "obstack.h"
|
|
|
|
#include "symtab.h"
|
1993-02-05 19:07:09 +01:00
|
|
|
#include "gdbcmd.h"
|
1993-02-01 23:53:24 +01:00
|
|
|
#include "gdbtypes.h"
|
1993-03-19 16:41:31 +01:00
|
|
|
#include "dis-asm.h"
|
1993-02-01 23:53:24 +01:00
|
|
|
/* Return the saved PC from this frame.
|
|
|
|
|
|
|
|
If the frame has a memory copy of SRP_REGNUM, use that. If not,
|
|
|
|
just use the register SRP_REGNUM itself. */
|
|
|
|
|
|
|
|
CORE_ADDR
|
|
|
|
frame_saved_pc (frame)
|
1993-02-05 19:07:09 +01:00
|
|
|
FRAME frame;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
1993-02-05 19:07:09 +01:00
|
|
|
return (read_memory_pointer (frame->frame + (BIG ? 4 : 2)));
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#define IS_PUSHL(x) (BIG ? ((x & 0xfff0) == 0x91e0):((x & 0xfff0) == 0x91F0))
|
|
|
|
#define IS_PUSHW(x) (BIG ? ((x & 0xfff0) == 0x93e0):((x & 0xfff0)==0x93f0))
|
|
|
|
#define IS_MOVE_FP(x) (BIG ? x == 0xa1ea : x == 0xa1fa)
|
|
|
|
#define IS_MOV_SP_FP(x) (BIG ? x == 0x94ea : x == 0x0d76)
|
|
|
|
#define IS_SUB2_SP(x) (x==0x1b87)
|
|
|
|
#define IS_MOVK_R5(x) (x==0x7905)
|
|
|
|
#define IS_SUB_SP(x) ((x & 0xffff) == 0x020f)
|
|
|
|
#define IS_PUSH_FP(x) (BIG ? (x == 0x93ea) : (x == 0x93fa))
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
/* work out how much local space is on the stack and
|
1993-02-01 23:53:24 +01:00
|
|
|
return the pc pointing to the first push */
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
static CORE_ADDR
|
|
|
|
skip_adjust (pc, size)
|
|
|
|
CORE_ADDR pc;
|
|
|
|
int *size;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
|
|
|
*size = 0;
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
if (IS_PUSH_FP (read_memory_short (pc))
|
|
|
|
&& IS_MOV_SP_FP (read_memory_short (pc + 2)))
|
|
|
|
{
|
|
|
|
/* This is a function with an explict frame pointer */
|
|
|
|
pc += 4;
|
|
|
|
*size += 2; /* remember the frame pointer */
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
|
|
|
|
/* remember any stack adjustment */
|
1993-02-05 19:07:09 +01:00
|
|
|
if (IS_SUB_SP (read_memory_short (pc)))
|
|
|
|
{
|
|
|
|
*size += read_memory_short (pc + 2);
|
|
|
|
pc += 4;
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
return pc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1993-02-05 19:07:09 +01:00
|
|
|
examine_frame (pc, regs, sp)
|
|
|
|
CORE_ADDR pc;
|
|
|
|
struct frame_saved_regs *regs;
|
|
|
|
CORE_ADDR sp;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
1993-02-05 19:07:09 +01:00
|
|
|
int w = read_memory_short (pc);
|
|
|
|
int offset = 0;
|
|
|
|
int regno;
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
for (regno = 0; regno < NUM_REGS; regno++)
|
1993-03-05 16:52:23 +01:00
|
|
|
regs->regs[regno] = 0;
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
while (IS_PUSHW (w) || IS_PUSHL (w))
|
|
|
|
{
|
1993-03-05 16:52:23 +01:00
|
|
|
/* work out which register is being pushed to where */
|
|
|
|
if (IS_PUSHL (w))
|
|
|
|
{
|
|
|
|
regs->regs[w & 0xf] = offset;
|
|
|
|
regs->regs[(w & 0xf) + 1] = offset + 2;
|
|
|
|
offset += 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
regs->regs[w & 0xf] = offset;
|
|
|
|
offset += 2;
|
|
|
|
}
|
|
|
|
pc += 2;
|
|
|
|
w = read_memory_short (pc);
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
if (IS_MOVE_FP (w))
|
1993-03-05 16:52:23 +01:00
|
|
|
{
|
|
|
|
/* We know the fp */
|
1993-02-05 19:07:09 +01:00
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
}
|
1993-02-05 19:07:09 +01:00
|
|
|
else if (IS_SUB_SP (w))
|
1993-03-05 16:52:23 +01:00
|
|
|
{
|
|
|
|
/* Subtracting a value from the sp, so were in a function
|
1993-02-05 19:07:09 +01:00
|
|
|
which needs stack space for locals, but has no fp. We fake up
|
|
|
|
the values as if we had an fp */
|
1993-03-05 16:52:23 +01:00
|
|
|
regs->regs[FP_REGNUM] = sp;
|
|
|
|
}
|
1993-02-05 19:07:09 +01:00
|
|
|
else
|
1993-03-05 16:52:23 +01:00
|
|
|
{
|
|
|
|
/* This one didn't have an fp, we'll fake it up */
|
|
|
|
regs->regs[SP_REGNUM] = sp;
|
|
|
|
}
|
1993-02-05 19:07:09 +01:00
|
|
|
/* stack pointer contains address of next frame */
|
|
|
|
/* regs->regs[fp_regnum()] = fp;*/
|
1993-02-01 23:53:24 +01:00
|
|
|
regs->regs[SP_REGNUM] = sp;
|
|
|
|
return pc;
|
|
|
|
}
|
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
CORE_ADDR
|
1993-02-05 19:07:09 +01:00
|
|
|
z8k_skip_prologue (start_pc)
|
|
|
|
CORE_ADDR start_pc;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
|
|
|
struct frame_saved_regs dummy;
|
1993-02-05 19:07:09 +01:00
|
|
|
|
|
|
|
return examine_frame (start_pc, &dummy, 0);
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
CORE_ADDR
|
1993-02-05 19:07:09 +01:00
|
|
|
addr_bits_remove (x)
|
|
|
|
CORE_ADDR x;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
|
|
|
return x & PTR_MASK;
|
|
|
|
}
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
read_memory_pointer (x)
|
|
|
|
CORE_ADDR x;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
return read_memory_integer (ADDR_BITS_REMOVE (x), BIG ? 4 : 2);
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
FRAME_ADDR
|
|
|
|
frame_chain (thisframe)
|
|
|
|
FRAME thisframe;
|
|
|
|
{
|
1993-02-05 19:07:09 +01:00
|
|
|
if (thisframe->prev == 0)
|
|
|
|
{
|
|
|
|
/* This is the top of the stack, let's get the sp for real */
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
if (!inside_entry_file ((thisframe)->pc))
|
1993-02-05 19:07:09 +01:00
|
|
|
{
|
|
|
|
return read_memory_pointer ((thisframe)->frame);
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
init_frame_pc ()
|
|
|
|
{
|
|
|
|
abort ();
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
|
|
|
|
/* Put here the code to store, into a struct frame_saved_regs,
|
|
|
|
the addresses of the saved registers of frame described by FRAME_INFO.
|
|
|
|
This includes special registers such as pc and fp saved in special
|
|
|
|
ways in the stack frame. sp is even more special:
|
|
|
|
the address we return for it IS the sp for the next frame. */
|
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
void
|
1993-02-05 19:07:09 +01:00
|
|
|
get_frame_saved_regs (frame_info, frame_saved_regs)
|
1993-02-01 23:53:24 +01:00
|
|
|
struct frame_info *frame_info;
|
|
|
|
struct frame_saved_regs *frame_saved_regs;
|
|
|
|
|
|
|
|
{
|
1993-02-05 19:07:09 +01:00
|
|
|
CORE_ADDR pc;
|
|
|
|
int w;
|
|
|
|
|
1993-09-01 23:56:42 +02:00
|
|
|
memset (frame_saved_regs, '\0', sizeof (*frame_saved_regs));
|
1993-02-05 19:07:09 +01:00
|
|
|
pc = get_pc_function_start (frame_info->pc);
|
1993-02-01 23:53:24 +01:00
|
|
|
|
|
|
|
/* wander down the instruction stream */
|
1993-02-05 19:07:09 +01:00
|
|
|
examine_frame (pc, frame_saved_regs, frame_info->frame);
|
1993-02-01 23:53:24 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
void
|
1993-02-05 19:07:09 +01:00
|
|
|
z8k_push_dummy_frame ()
|
|
|
|
{
|
|
|
|
abort ();
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
int
|
1993-02-05 19:07:09 +01:00
|
|
|
print_insn (memaddr, stream)
|
|
|
|
CORE_ADDR memaddr;
|
1993-11-01 23:25:23 +01:00
|
|
|
GDB_FILE *stream;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
1993-03-19 01:18:55 +01:00
|
|
|
disassemble_info info;
|
|
|
|
|
|
|
|
GDB_INIT_DISASSEMBLE_INFO(info, stream);
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
if (BIG)
|
|
|
|
{
|
1993-05-25 22:12:59 +02:00
|
|
|
return print_insn_z8001 ((bfd_vma) memaddr, &info);
|
1993-02-05 19:07:09 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
1993-05-25 22:12:59 +02:00
|
|
|
return print_insn_z8002 ((bfd_vma) memaddr, &info);
|
1993-02-05 19:07:09 +01:00
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or
|
|
|
|
is not the address of a valid instruction, the address of the next
|
|
|
|
instruction beyond ADDR otherwise. *PWORD1 receives the first word
|
|
|
|
of the instruction.*/
|
|
|
|
|
|
|
|
CORE_ADDR
|
1993-02-05 19:07:09 +01:00
|
|
|
NEXT_PROLOGUE_INSN (addr, lim, pword1)
|
|
|
|
CORE_ADDR addr;
|
|
|
|
CORE_ADDR lim;
|
|
|
|
short *pword1;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
1993-07-10 03:35:53 +02:00
|
|
|
char buf[2];
|
1993-02-05 19:07:09 +01:00
|
|
|
if (addr < lim + 8)
|
|
|
|
{
|
1993-07-10 03:35:53 +02:00
|
|
|
read_memory (addr, buf, 2);
|
|
|
|
*pword1 = extract_signed_integer (buf, 2);
|
1993-02-05 19:07:09 +01:00
|
|
|
|
|
|
|
return addr + 2;
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Put here the code to store, into a struct frame_saved_regs,
|
|
|
|
the addresses of the saved registers of frame described by FRAME_INFO.
|
|
|
|
This includes special registers such as pc and fp saved in special
|
|
|
|
ways in the stack frame. sp is even more special:
|
|
|
|
the address we return for it IS the sp for the next frame.
|
|
|
|
|
|
|
|
We cache the result of doing this in the frame_cache_obstack, since
|
|
|
|
it is fairly expensive. */
|
|
|
|
|
|
|
|
void
|
|
|
|
frame_find_saved_regs (fip, fsrp)
|
|
|
|
struct frame_info *fip;
|
|
|
|
struct frame_saved_regs *fsrp;
|
|
|
|
{
|
|
|
|
int locals;
|
|
|
|
CORE_ADDR pc;
|
|
|
|
CORE_ADDR adr;
|
|
|
|
int i;
|
1993-02-05 19:07:09 +01:00
|
|
|
|
1993-02-01 23:53:24 +01:00
|
|
|
memset (fsrp, 0, sizeof *fsrp);
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
pc = skip_adjust (get_pc_function_start (fip->pc), &locals);
|
|
|
|
|
|
|
|
{
|
|
|
|
adr = fip->frame - locals;
|
|
|
|
for (i = 0; i < 8; i++)
|
|
|
|
{
|
|
|
|
int word = read_memory_short (pc);
|
|
|
|
|
|
|
|
pc += 2;
|
|
|
|
if (IS_PUSHL (word))
|
|
|
|
{
|
|
|
|
fsrp->regs[word & 0xf] = adr;
|
|
|
|
fsrp->regs[(word & 0xf) + 1] = adr - 2;
|
|
|
|
adr -= 4;
|
|
|
|
}
|
|
|
|
else if (IS_PUSHW (word))
|
|
|
|
{
|
|
|
|
fsrp->regs[word & 0xf] = adr;
|
|
|
|
adr -= 2;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1993-02-01 23:53:24 +01:00
|
|
|
fsrp->regs[PC_REGNUM] = fip->frame + 4;
|
|
|
|
fsrp->regs[FP_REGNUM] = fip->frame;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1993-02-05 19:07:09 +01:00
|
|
|
saved_pc_after_call ()
|
|
|
|
{
|
1993-03-17 20:32:42 +01:00
|
|
|
return addr_bits_remove
|
|
|
|
(read_memory_integer (read_register (SP_REGNUM), PTR_SIZE));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extract_return_value(type, regbuf, valbuf)
|
|
|
|
struct type *type;
|
|
|
|
char *regbuf;
|
|
|
|
char *valbuf;
|
|
|
|
{
|
|
|
|
int b;
|
|
|
|
int len = TYPE_LENGTH(type);
|
|
|
|
|
|
|
|
for (b = 0; b < len; b += 2) {
|
|
|
|
int todo = len - b;
|
|
|
|
if (todo > 2)
|
|
|
|
todo = 2;
|
|
|
|
memcpy(valbuf + b, regbuf + b, todo);
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
|
|
|
|
1993-03-17 20:32:42 +01:00
|
|
|
void
|
|
|
|
write_return_value(type, valbuf)
|
|
|
|
struct type *type;
|
|
|
|
char *valbuf;
|
|
|
|
{
|
|
|
|
int reg;
|
|
|
|
int len;
|
|
|
|
for (len = 0; len < TYPE_LENGTH(type); len += 2)
|
|
|
|
{
|
|
|
|
write_register_bytes(REGISTER_BYTE(len /2 + 2), valbuf + len, 2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
store_struct_return(addr, sp)
|
|
|
|
CORE_ADDR addr;
|
|
|
|
CORE_ADDR sp;
|
|
|
|
{
|
|
|
|
write_register(2, addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-02-01 23:53:24 +01:00
|
|
|
void
|
1993-02-05 19:07:09 +01:00
|
|
|
print_register_hook (regno)
|
|
|
|
int regno;
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
1993-02-05 19:07:09 +01:00
|
|
|
if ((regno & 1) == 0 && regno < 16)
|
|
|
|
{
|
|
|
|
unsigned short l[2];
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
read_relative_register_raw_bytes (regno, (char *) (l + 0));
|
|
|
|
read_relative_register_raw_bytes (regno + 1, (char *) (l + 1));
|
1993-11-01 23:25:23 +01:00
|
|
|
printf_unfiltered ("\t");
|
|
|
|
printf_unfiltered ("%04x%04x", l[0], l[1]);
|
1993-02-05 19:07:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((regno & 3) == 0 && regno < 16)
|
|
|
|
{
|
|
|
|
unsigned short l[4];
|
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
read_relative_register_raw_bytes (regno, (char *) (l + 0));
|
|
|
|
read_relative_register_raw_bytes (regno + 1, (char *) (l + 1));
|
|
|
|
read_relative_register_raw_bytes (regno + 2, (char *) (l + 2));
|
|
|
|
read_relative_register_raw_bytes (regno + 3, (char *) (l + 3));
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-11-01 23:25:23 +01:00
|
|
|
printf_unfiltered ("\t");
|
|
|
|
printf_unfiltered ("%04x%04x%04x%04x", l[0], l[1], l[2], l[3]);
|
1993-02-01 23:53:24 +01:00
|
|
|
}
|
1993-02-05 19:07:09 +01:00
|
|
|
if (regno == 15)
|
|
|
|
{
|
|
|
|
unsigned short rval;
|
|
|
|
int i;
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
read_relative_register_raw_bytes (regno, (char *) (&rval));
|
|
|
|
|
1993-11-01 23:25:23 +01:00
|
|
|
printf_unfiltered ("\n");
|
1993-02-05 19:07:09 +01:00
|
|
|
for (i = 0; i < 10; i += 2)
|
|
|
|
{
|
1993-11-01 23:25:23 +01:00
|
|
|
printf_unfiltered ("(sp+%d=%04x)", i, read_memory_short (rval + i));
|
1993-02-05 19:07:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
void
|
1993-02-05 19:07:09 +01:00
|
|
|
z8k_pop_frame ()
|
1993-02-01 23:53:24 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
struct cmd_list_element *setmemorylist;
|
|
|
|
|
1993-03-05 16:52:23 +01:00
|
|
|
void
|
1993-02-05 19:07:09 +01:00
|
|
|
z8k_set_pointer_size (newsize)
|
|
|
|
int newsize;
|
|
|
|
{
|
|
|
|
static int oldsize = 0;
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
if (oldsize != newsize)
|
|
|
|
{
|
1993-11-01 23:25:23 +01:00
|
|
|
printf_unfiltered ("pointer size set to %d bits\n", newsize);
|
1993-02-05 19:07:09 +01:00
|
|
|
oldsize = newsize;
|
|
|
|
if (newsize == 32)
|
|
|
|
{
|
|
|
|
BIG = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BIG = 0;
|
|
|
|
}
|
|
|
|
_initialize_gdbtypes ();
|
|
|
|
}
|
|
|
|
}
|
1993-02-01 23:53:24 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
static void
|
|
|
|
segmented_command (args, from_tty)
|
|
|
|
char *args;
|
|
|
|
int from_tty;
|
|
|
|
{
|
1993-03-17 20:32:42 +01:00
|
|
|
z8k_set_pointer_size (32);
|
1993-02-05 19:07:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
unsegmented_command (args, from_tty)
|
|
|
|
char *args;
|
|
|
|
int from_tty;
|
|
|
|
{
|
|
|
|
z8k_set_pointer_size (16);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1993-11-16 00:49:21 +01:00
|
|
|
|
1993-02-05 19:07:09 +01:00
|
|
|
static void
|
|
|
|
set_memory (args, from_tty)
|
|
|
|
char *args;
|
|
|
|
int from_tty;
|
|
|
|
{
|
1993-11-01 23:25:23 +01:00
|
|
|
printf_unfiltered ("\"set memory\" must be followed by the name of a memory subcommand.\n");
|
|
|
|
help_list (setmemorylist, "set memory ", -1, gdb_stdout);
|
1993-02-05 19:07:09 +01:00
|
|
|
}
|
|
|
|
|
* Makefile.in (init.c): Generate using the source, not munch. This
cleans up all kinds of hassles (which nm to use in munch, etc). The
new formatting conventions (mostly already followed) are that
the name of the _initialize_* routines must start in column zero,
and must not be inside #if.
* munch: Removed.
* Makefile.in: Remove references to munch.
* serial.c, remote.c, infptrace.c, maint.c, convex-tdep.c,
alpha-tdep.c, hp300ux-nat.c, hppab-nat.c, osfsolib.c, remote-es.c,
procfs.c, remote-udi.c, ser-go32.c, ultra3-xdep.c, sh-tdep.c,
i960-tdep.c, hppa-tdep.c, h8500-tdep.c, dpx2-nat.c, delta68-nat.c,
z8k-tdep.c: Make sure the above conventions are followed. Make
sure they are all declared as returning void. Clean up
miscellaneous comments and such.
1993-10-22 06:55:58 +01:00
|
|
|
void
|
1993-02-05 19:07:09 +01:00
|
|
|
_initialize_z8ktdep ()
|
|
|
|
{
|
|
|
|
add_prefix_cmd ("memory", no_class, set_memory,
|
|
|
|
"set the memory model", &setmemorylist, "set memory ", 0,
|
|
|
|
&setlist);
|
|
|
|
add_cmd ("segmented", class_support, segmented_command,
|
|
|
|
"Set segmented memory model.", &setmemorylist);
|
|
|
|
add_cmd ("unsegmented", class_support, unsegmented_command,
|
|
|
|
"Set unsegmented memory model.", &setmemorylist);
|
|
|
|
|
|
|
|
}
|