mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-03 17:51:57 +00:00
803f52b9dc
prepend sky- to all #include's of sky headers.
87 lines
2.0 KiB
C
87 lines
2.0 KiB
C
/* Copyright (C) 1998, Cygnus Solutions
|
|
|
|
*/
|
|
|
|
#include "sim-main.h"
|
|
|
|
#include "sky-device.h"
|
|
#include "sky-vu0.h"
|
|
|
|
static char vu0_mem0_buffer[VU0_MEM0_SIZE];
|
|
static char vu0_mem1_buffer[VU0_MEM1_SIZE];
|
|
|
|
void
|
|
vu0_issue()
|
|
{
|
|
}
|
|
|
|
int
|
|
vu0_io_read_buffer(device *me,
|
|
void *dest,
|
|
int space,
|
|
address_word addr,
|
|
unsigned nr_bytes,
|
|
sim_cpu *processor,
|
|
sim_cia cia)
|
|
{
|
|
printf("%s: Read!\n", me->name);
|
|
return nr_bytes;
|
|
}
|
|
|
|
int
|
|
vu0_io_write_buffer(device *me,
|
|
const void *source,
|
|
int space,
|
|
address_word addr,
|
|
unsigned nr_bytes,
|
|
sim_cpu *processor,
|
|
sim_cia cia)
|
|
{
|
|
printf("%s: Write!\n", me->name);
|
|
return nr_bytes;
|
|
}
|
|
|
|
device vu0_device =
|
|
{
|
|
"vu0",
|
|
&vu0_io_read_buffer,
|
|
&vu0_io_write_buffer
|
|
};
|
|
|
|
void
|
|
vu0_attach(SIM_DESC sd)
|
|
{
|
|
sim_core_attach (sd,
|
|
NULL,
|
|
0 /*level*/,
|
|
access_read_write,
|
|
0 /*space ???*/,
|
|
VU0_REGISTER_WINDOW_START,
|
|
VU0_REGISTER_WINDOW_SIZE /*nr_bytes*/,
|
|
0 /*modulo*/,
|
|
&vu0_device,
|
|
NULL /*buffer*/);
|
|
|
|
sim_core_attach (sd,
|
|
NULL,
|
|
0 /*level*/,
|
|
access_read_write,
|
|
0 /*space ???*/,
|
|
VU0_MEM0_WINDOW_START,
|
|
VU0_MEM0_SIZE /*nr_bytes*/,
|
|
0 /*modulo*/,
|
|
0 /*device*/,
|
|
&vu0_mem0_buffer /*buffer*/);
|
|
|
|
sim_core_attach (sd,
|
|
NULL,
|
|
0 /*level*/,
|
|
access_read_write,
|
|
0 /*space ???*/,
|
|
VU0_MEM1_WINDOW_START,
|
|
VU0_MEM1_SIZE /*nr_bytes*/,
|
|
0 /*modulo*/,
|
|
0 /*device*/,
|
|
&vu0_mem1_buffer /*buffer*/);
|
|
}
|