1use core::ffi::c_void;
4
5use crate::{map_jump_table, JUMP_TABLE_START};
6
7#[repr(C, packed)]
15#[derive(Copy, Clone, Eq, PartialEq, Debug)]
16pub struct vcodesig {
17 pub magic: u32,
19
20 pub r#type: u32,
22
23 pub owner: u32,
25
26 pub options: u32,
28}
29
30impl Default for vcodesig {
31 fn default() -> Self {
32 vcodesig {
33 magic: V5_SIG_MAGIC,
34 r#type: Default::default(),
35 owner: Default::default(),
36 options: Default::default(),
37 }
38 }
39}
40
41pub const V5_SIG_MAGIC: u32 = 0x35585658;
42pub const EX_SIG_MAGIC: u32 = 0x45585658;
43
44pub const V5_SIG_TYPE_USER: u32 = 0;
45pub const V5_SIG_OWNER_SYS: u32 = 0;
46pub const V5_SIG_OWNER_VEX: u32 = 1;
47pub const V5_SIG_OWNER_PARTNER: u32 = 2;
48pub const V5_SIG_OPTIONS_NONE: u32 = 0;
49pub const V5_SIG_OPTIONS_INDG: u32 = 1 << 0;
51pub const V5_SIG_OPTIONS_EXIT: u32 = 1 << 1;
53pub const V5_SIG_OPTIONS_THDG: u32 = 1 << 2;
55
56#[repr(C)]
57#[derive(Default, Debug, Copy, Clone, Eq, PartialEq)]
58pub struct time {
59 pub ti_hour: u8,
61 pub ti_min: u8,
63 pub ti_sec: u8,
65 pub ti_hund: u8,
67}
68
69#[repr(C)]
70#[derive(Default, Debug, Copy, Clone, Eq, PartialEq)]
71pub struct date {
72 pub da_year: u16,
74 pub da_day: u8,
76 pub da_mon: u8,
78}
79
80map_jump_table! {
81 0x10 => pub fn vexStdlibMismatchError(param_1: u32, param_2: u32),
82 0x01c =>
83 pub fn vexScratchMemoryPtr(ptr: *mut *mut core::ffi::c_void) -> i32,
85 0x998 => pub fn vexScratchMemoryLock() -> bool,
86 0x99c => pub fn vexScratchMemoryUnock(),
87 0x118 =>
88 pub fn vexSystemTimeGet() -> u32,
90 0x11c => pub fn vexGettime() -> time,
91 0x120 => pub fn vexGetdate() -> date,
92 0x124 => pub fn vexSystemMemoryDump(),
93 0x128 => pub fn vexSystemDigitalIO(pin: u32, value: u32),
94 0x12c => pub fn vexSystemStartupOptions() -> u32,
95 0x130 =>
96 pub fn vexSystemExitRequest(),
98 0x134 =>
99 pub fn vexSystemHighResTimeGet() -> u64,
101 0x138 =>
102 pub fn vexSystemPowerupTimeGet() -> u64,
104 0x13c =>
105 pub fn vexSystemLinkAddrGet() -> u32,
110 0x174 => pub fn vexSystemUsbStatus() -> u32,
111 0x8c0 => pub fn vexSystemTimerStop(),
112 0x8c4 => pub fn vexSystemTimerClearInterrupt(),
113 0x8c8 => pub fn vexSystemTimerReinitForRtos(priority: u32, handler: extern "aapcs" fn(data: *mut c_void)) -> i32,
114 0x8cc => pub fn vexSystemApplicationIRQHandler(ulICCIAR: u32),
115 0x8d0 => pub fn vexSystemWatchdogReinitRtos() -> i32,
116 0x8d4 => pub fn vexSystemWatchdogGet() -> u32,
117 0x910 => pub fn vexSystemBoot(),
118 0x914 => pub fn vexSystemUndefinedException(),
119 0x918 => pub fn vexSystemFIQInterrupt(),
120 0x91c => pub fn vexSystemIQRQnterrupt(),
121 0x920 => pub fn vexSystemSWInterrupt(),
122 0x924 => pub fn vexSystemDataAbortInterrupt(),
123 0x928 => pub fn vexSystemPrefetchAbortInterrupt(),
124}
125
126pub unsafe extern "aapcs" fn vexSystemVersion() -> u32 {
127 unsafe { core::ptr::read_volatile((JUMP_TABLE_START + 0x1000) as *const u32) }
128}
129
130pub unsafe extern "aapcs" fn vexStdlibVersion() -> u32 {
131 unsafe { core::ptr::read_volatile((JUMP_TABLE_START + 0x1004) as *const u32) }
132}