old-cross-binutils/sim/txvu/hardware.c
Frank Ch. Eigler d1a18c2f83 - added first batch of PKE code
- PKE memory region registration
- basic R/W operations
- combined pke[01] -> pke
1998-01-23 00:38:10 +00:00

23 lines
350 B
C

/* Copyright (C) 1998, Cygnus Solutions
*/
#include "gpuif.h"
#include "dma.h"
#include "pke.h"
#include "vu0.h"
#include "vu1.h"
#include "hardware.h"
void
register_devices(SIM_DESC sd)
{
/* Attach a bunch of devices... */
gpuif_attach(sd);
dma_attach(sd);
pke0_attach(sd);
vu0_attach(sd);
vu1_attach(sd);
pke1_attach(sd);
}