2021-07-28 21:06:54 +03:00
|
|
|
// mips.cpp
|
2015-02-20 18:18:09 +01:00
|
|
|
//
|
|
|
|
|
// Copyright (c) 2012 Steven Watanabe
|
|
|
|
|
//
|
|
|
|
|
// Distributed under the Boost Software License Version 1.0. (See
|
|
|
|
|
// accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
|
2019-12-18 03:40:56 -08:00
|
|
|
#if !(defined(__mips) || defined(_MIPS_ISA_MIPS1) || defined(_R3000))
|
2021-07-28 21:06:54 +03:00
|
|
|
#error "Not MIPS"
|
2015-02-20 18:18:09 +01:00
|
|
|
#endif
|