Skip to content

Commit

Permalink
Moved rishka_commons.h to rishka.h
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Mar 6, 2024
1 parent db913c9 commit 7cde36a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 37 deletions.
7 changes: 6 additions & 1 deletion src/rishka.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,12 @@
#ifndef RISHKA_H
#define RISHKA_H

#include <rishka_commons.h> ///< Common definitions and macros.
#define RISHKA_VM_STACK_SIZE 32768U ///< Define the stack size for the Rishka virtual machine.

#include <Arduino.h> ///< Include Arduino core library.
#include <SD.h> ///< Include SD card library.
#include <SPI.h> ///< Include SPI communication library.

#include <rishka_instructions.h> ///< Instruction set architecture definitions.
#include <rishka_syscalls.h> ///< System call interface and implementations.
#include <rishka_types.h> ///< Type definitions and aliases.
Expand Down
36 changes: 0 additions & 36 deletions src/rishka_commons.h

This file was deleted.

0 comments on commit 7cde36a

Please sign in to comment.