Changeset b06e68ef in rtems for c/src/lib/libbsp/hppa1.1/simhppa/include
- Timestamp:
- 08/17/95 19:51:51 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 95fbca1
- Parents:
- 3b438fa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/hppa1.1/simhppa/include/bsp.h
r3b438fa rb06e68ef 22 22 23 23 #include <rtems.h> 24 #include <iosupp.h> 24 #include <clockdrv.h> 25 #include <rtems/ttydrv.h> 26 #include <libcsupport.h> 25 27 26 28 /* … … 66 68 67 69 /* 70 * Todo: this should be put somewhere else 71 */ 72 73 #undef CLOCK_DRIVER_TABLE_ENTRY 74 #define CLOCK_DRIVER_TABLE_ENTRY { Clock_initialize, NULL, NULL, NULL, NULL, Clock_control } 75 rtems_device_driver Clock_control( 76 rtems_device_major_number major, 77 rtems_device_minor_number minor, 78 void *pargp 79 ); 80 81 /* 68 82 * We printf() to a buffer if multiprocessing, *or* if this is set. 69 83 * ref: src/lib/libbsp/hppa/simhppa/iosupp/consupp.c … … 72 86 extern int use_print_buffer; 73 87 88 /* 89 * When not doing printf to a buffer, we do printf thru RTEMS libio 90 * and our tty driver. Set it up so that console is right. 91 */ 92 93 #define CONSOLE_DRIVER_TABLE_ENTRY \ 94 { tty_initialize, tty_open, tty_close, tty_read, tty_write, tty_control } 95 96 /* 97 * How many libio files we want 98 */ 99 #define BSP_LIBIO_MAX_FDS 20 100 74 101 #define HPPA_INTERRUPT_EXTERNAL_MPCI HPPA_INTERRUPT_EXTERNAL_10 102 103 rtems_isr_entry set_vector(rtems_isr_entry, rtems_vector_number, int); 75 104 76 105 void bsp_start( void );
Note: See TracChangeset
for help on using the changeset viewer.