Access the slides here.
-
Install Docker
Visit the link to find details about MAMBO on Docker.
-
Directory structure
Each exercise contains the following folders:
-
code
: This folder contains the template of the MAMBO plugin for each exercise that you need to modify/add code in theTODO
sections. -
solution
: This folder contains the implemented MAMBO plugin for each exercise.
-
Note
MAMBO can be also run natively, without Docker, on Armv8 Linux machines. Speak to us if you wish to do so and have any problems.
Note
After completing Exercise 1 you can either continue with your current code or start from the code template provided for you in subsequent exercises.
.
├── appendix -- Bonus exercise with the use of gdb for debugging MAMBO and target applications
│ └── README.md
├── exercise1 -- The repository for Exercise 1
│ ├── code
│ │ └── tutorial.c
│ ├── README.md
│ └── solution
│ └── solution.c
├── exercise2 -- The repository for Exercise 2
│ ├── code
│ │ └── tutorial.c
│ ├── README.md
│ └── solution
│ └── solution.c
├── exercise3 -- The repository for Exercise 3
│ ├── code
│ │ └── tutorial.c
│ ├── README.md
│ └── solution
│ └── solution.c
├── exercise4 -- The repository for Exercise 4
│ ├── code
│ │ └── tutorial.c
│ ├── README.md
│ └── solution
│ └── solution.c
├── introduction -- The repository for Introduction
│ ├── code
│ │ ├── Makefile
│ │ ├── test.c
| | └── tutorial.c
│ ├── mambo
│ │ └── makefile
│ └── README.md
└── README.md
Follow the link to start with the Introduction.
Follow the link to start Exercise 1.
Follow the link to start Exercise 2.
Follow the link to start Exercise 3.
Follow the link to start Exercise 4.
Follow the link to start the additional exercises.