types.h 302 B

123456789101112131415161718
  1. /*
  2. * Base type definitions - The peTI-NESulator Project
  3. * types.h - Taken from the Quick6502 project
  4. *
  5. * Created by Manoël Trapier on 18/09/06.
  6. * Copyright (c) 2002-2019 986-Studio.
  7. *
  8. */
  9. #ifndef TYPES_H
  10. #define TYPES_H
  11. #include <stdint.h>
  12. #define true (0)
  13. #define false (!true)
  14. #endif