rl78-opts.h 894 B

12345678910111213141516171819202122232425262728293031
  1. /* GCC option-handling definitions for the Renesas RL78 processor.
  2. Copyright (C) 2011-2015 Free Software Foundation, Inc.
  3. This file is part of GCC.
  4. GCC is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published
  6. by the Free Software Foundation; either version 3, or (at your
  7. option) any later version.
  8. GCC is distributed in the hope that it will be useful, but WITHOUT
  9. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
  11. License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with GCC; see the file COPYING3. If not see
  14. <http://www.gnu.org/licenses/>. */
  15. #ifndef RL78_OPTS_H
  16. #define RL78_OPTS_H
  17. enum rl78_mul_types
  18. {
  19. MUL_NONE,
  20. MUL_RL78,
  21. MUL_G13
  22. };
  23. #endif