The Pedigree Project  0.1
Bios.h
1 /*
2  * Copyright (c) 2008-2014, Pedigree Developers
3  *
4  * Please see the CONTRIB file in the root of the source tree for a full
5  * list of contributors.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #ifndef BIOS_H
21 #define BIOS_H
22 
23 #include "pedigree/kernel/compiler.h"
24 #include "pedigree/kernel/processor/types.h"
25 
29 {
30  public:
32  static Bios &instance()
33  {
34  return m_Instance;
35  }
36 
39  void executeInterrupt(int interrupt);
40 
42  uintptr_t malloc(int n);
43 
44  void free(uintptr_t)
45  {
46  }
47 
49  void setAx(int n);
51  void setBx(int n);
53  void setCx(int n);
55  void setDx(int n);
57  void setDi(int n);
59  void setEs(int n);
60 
62  int getAx();
64  int getBx();
66  int getCx();
68  int getDx();
70  int getDi();
72  int getEs();
73 
74  private:
76  Bios();
77  ~Bios();
78 
80  uintptr_t mallocLoc;
81 
83  static Bios m_Instance;
84 };
85 
86 #endif
static Bios m_Instance
Definition: Bios.h:83
static Bios & instance()
Definition: Bios.h:32
Definition: Bios.h:28
uintptr_t mallocLoc
Definition: Bios.h:80