No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

gen_assembleur.h 357B

123456789101112131415161718192021
  1. #ifndef GEN_ASSEMBLEUR_H
  2. #define GEN_ASSEMBLEUR_H
  3. #define INSTRUCTION_TABLE_SIZE 1000
  4. #define INSTRUCTION_SIZE 100
  5. //table des instructions
  6. typedef struct table{
  7. char*
  8. }
  9. enum operation{ADD, SUB, MUL, DIV};
  10. void gen_arithmetique(enum operation op, int arg1, int arg2);
  11. //renvoie l'index (ou valeur?) de la premiere @ dispo
  12. int new_temp();
  13. #endif