oboy/src/interrupt.ml

41 lines
870 B
OCaml
Raw Normal View History

2016-02-28 23:41:06 +01:00
(**
* Copyright (c) 2016, Fabien Freling
* All rights reserved.
*
* This source code is licensed under the BSD 2-clause license found in the
* LICENSE file at the top level directory of this source tree.
*)
2016-02-29 23:07:42 +01:00
let ime = ref false;;
2016-02-28 23:41:06 +01:00
type t =
2016-02-29 23:07:42 +01:00
| V_Blank
| LCD_Stat
| Timer
| Serial
| Joypad
2016-02-28 23:41:06 +01:00
2016-02-29 23:07:42 +01:00
(** Return the list of interrupt flags sorted by priority. *)
2016-02-28 23:41:06 +01:00
let get_flags byte =
let nth_interrupt i =
match i with
| 0 -> V_Blank
| 1 -> LCD_Stat
| 2 -> Timer
| 3 -> Serial
| 4 -> Joypad
| _ -> failwith "Invalid interrupt index." in
let rec get_flag byte i accu =
match i with
| 0 | 1 | 2 | 3 | 4 ->
if Bit.is_set byte i then
let interrupt = nth_interrupt i in
get_flag byte (i + 1) (interrupt :: accu)
else
get_flag byte (i + 1) accu
2016-02-29 23:07:42 +01:00
| _ -> List.rev accu in
2016-02-28 23:41:06 +01:00
get_flag byte 0 []