Changeset 255 for soft/giet_vm/sys/sys_handler.c
- Timestamp:
- Oct 9, 2013, 9:32:41 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/sys/sys_handler.c
r253 r255 6 6 /////////////////////////////////////////////////////////////////////////////////// 7 7 // The sys_handler.c and sys_handler.h files are part of the GIET-VM nano-kernel. 8 // It define the syscall_vector[] (at the end of this file), as well as the8 // It defines the syscall_vector[], as well as the 9 9 // associated syscall handlers that are not related to peripherals. 10 10 // The syscall handlers for peripherals are defined in the drivers.c file. … … 21 21 // Initialize the syscall vector with syscall handlers 22 22 //////////////////////////////////////////////////////////////////////////// 23 const void * _syscall_vector[ 32] =23 const void * _syscall_vector[64] = 24 24 { 25 25 &_procid, /* 0x00 */ … … 55 55 &_nic_sync_read, /* 0x1E */ 56 56 &_nic_sync_write, /* 0x1F */ 57 &_sim_helper_access, /* 0x20 */ 57 58 }; 58 59
Note: See TracChangeset
for help on using the changeset viewer.