libtransistor
A userland library for the Nintendo Switch
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros
address_space.hpp
Go to the documentation of this file.
1 
6 #pragma once
7 
9 
10 namespace trn {
11 namespace as {
12 
13 class Reservation {
14  public:
15  Reservation(size_t size);
16  ~Reservation();
17 
18  const size_t size;
19  uint8_t *const base;
20 };
21 
22 } // namespace as
23 } // namespace trn
Definition: address_space.hpp:13
Address space management.