File tree 7 files changed +113
-7
lines changed
7 files changed +113
-7
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,12 @@ all: centurion
14
14
CFLAGS = -g3 -Wall -pedantic
15
15
16
16
centurion : centurion.o cpu6.o disassemble.o dsk.o hawk.o math128.o mux.o \
17
- cbin.o cbin_load.o $(SYS_OBJS)
17
+ cbin.o cbin_load.o scheduler.o $(SYS_OBJS)
18
18
19
- centurion.o : centurion.c centurion.h console.h cpu6.h disassemble.h dma.h dsk.h math128.o mux.h
19
+ centurion.o : centurion.c centurion.h console.h cpu6.h disassemble.h dma.h \
20
+ dsk.h math128.o mux.h scheduler.h
21
+
22
+ scheduler.o : scheduler.c scheduler.h cpu6.h
20
23
21
24
console.o : console.c console.h mux.h
22
25
@@ -26,17 +29,17 @@ cpu6.o : cpu6.c cpu6.h
26
29
27
30
disassemble.o : disassemble.c disassemble.h cpu6.h
28
31
29
- dsk.o : dsk.c dsk.h hawk.h dma.h
32
+ dsk.o : dsk.c dsk.h hawk.h dma.h scheduler.h cpu6.h
30
33
31
- hawk.o : hawk.c hawk.h
34
+ hawk.o : hawk.c hawk.h scheduler.h
32
35
33
36
cbin.o : cbin.h
34
37
35
38
cbin_load.o : cpu6.h cbin.h
36
39
37
40
math128.o : math128.h
38
41
39
- mux.o : centurion.h mux.h console.h cpu6.h
42
+ mux.o : centurion.h mux.h console.h cpu6.h scheduler.h
40
43
41
44
clean :
42
45
rm -f centurion * .o * ~
Original file line number Diff line number Diff line change 17
17
#include "dsk.h"
18
18
#include "mux.h"
19
19
#include "cbin_load.h"
20
+ #include "scheduler.h"
20
21
21
22
static unsigned finch ; /* Finch or original FDC */
22
23
@@ -849,6 +850,7 @@ int main(int argc, char *argv[])
849
850
/* Update peripherals state */
850
851
mux_poll (trace & TRACE_MUX );
851
852
853
+ run_scheduler (cpu_timestamp_ns );
852
854
throttle_emulation (cpu_timestamp_ns );
853
855
854
856
instruction_count ++ ;
Original file line number Diff line number Diff line change 26
26
#define C 12 /* Flags ? */
27
27
#define P 14 /* PC */
28
28
29
- #define ONE_SECOND_NS 1000000000.0
30
-
31
29
extern uint8_t mem_read8 (uint32_t addr );
32
30
extern uint8_t mem_read8_debug (uint32_t addr );
33
31
extern uint16_t mem_read16_debug (uint32_t addr );
Original file line number Diff line number Diff line change 7
7
#include "dma.h"
8
8
#include "dsk.h"
9
9
#include "hawk.h"
10
+ #include "scheduler.h"
10
11
11
12
#ifndef O_BINARY
12
13
#define O_BINARY 0
Original file line number Diff line number Diff line change 8
8
#include "console.h"
9
9
#include "cpu6.h"
10
10
#include "mux.h"
11
+ #include "scheduler.h"
11
12
12
13
struct MuxUnit mux [NUM_MUX_UNITS ];
13
14
// 0 disables interrupts
Original file line number Diff line number Diff line change
1
+ #include "scheduler.h"
2
+ #include "cpu6.h"
3
+
4
+ #include <stdlib.h>
5
+ #include <assert.h>
6
+
7
+ static struct event_t * event_list = NULL ;
8
+ static uint64_t next_event = UINT64_MAX ;
9
+
10
+ void schedule_event (struct event_t * event )
11
+ {
12
+ uint64_t now = get_current_time ();
13
+ int64_t scheduled = get_current_time () + event -> delta_ns ;
14
+ assert (scheduled > now );
15
+
16
+ if (event -> next != NULL )
17
+ cancel_event (event );
18
+
19
+ event -> scheduled_ns = scheduled ;
20
+
21
+ if (!event_list ) {
22
+ event -> next = NULL ;
23
+ event_list = event ;
24
+ next_event = scheduled ;
25
+ return ;
26
+ }
27
+
28
+ struct event_t * item = event_list ;
29
+
30
+ while (item && item -> scheduled_ns < scheduled ) {
31
+ item = item -> next ;
32
+ }
33
+ event -> next = item -> next ;
34
+ item -> next = event ;
35
+ }
36
+
37
+ void run_scheduler (uint64_t current_time )
38
+ {
39
+ if (next_event > current_time )
40
+ return ;
41
+
42
+ assert (event_list );
43
+
44
+ while (next_event <= current_time ) {
45
+ // Pop event
46
+ struct event_t * event = event_list ;
47
+ event_list = event_list -> next ;
48
+ event -> next = NULL ;
49
+
50
+ // Update next_event
51
+ next_event = (event_list == NULL ) ? UINT64_MAX : event_list -> scheduled_ns ;
52
+
53
+ // Run callback
54
+ event -> callback (event , current_time - event -> scheduled_ns );
55
+ }
56
+ }
57
+
58
+
59
+ void cancel_event (struct event_t * event )
60
+ {
61
+ struct event_t * * next_ptr = & event_list ;
62
+
63
+ while (* next_ptr != NULL ) {
64
+ struct event_t * next = * next_ptr ;
65
+ if (next == event ) {
66
+ * next_ptr = next -> next ;
67
+ event -> next = NULL ;
68
+ return ;
69
+ }
70
+ next_ptr = & next -> next ;
71
+ }
72
+ }
Original file line number Diff line number Diff line change
1
+
2
+ #pragma once
3
+
4
+ #include <stdint.h>
5
+
6
+ #define ONE_SECOND_NS 1000000000.0
7
+ #define ONE_MILISECOND_NS 1000000.0
8
+
9
+
10
+ struct event_t ;
11
+
12
+ // event callbacks get called with their event and how many ns have passed
13
+ // since their scheduled event time.
14
+ // If event was dynamically allocated, the callback should free it.
15
+ typedef void (* callback_t )(struct event_t * event , int64_t late_ns );
16
+
17
+ struct event_t {
18
+ int64_t delta_ns ;
19
+ callback_t callback ;
20
+
21
+ // internal state
22
+ struct event_t * next ;
23
+ int64_t scheduled_ns ;
24
+ };
25
+
26
+ void schedule_event (struct event_t * event );
27
+ void cancel_event (struct event_t * event );
28
+ void run_scheduler (uint64_t current_time );
29
+ uint64_t get_current_time ();
You can’t perform that action at this time.
0 commit comments