// license:BSD-3-Clause // copyright-holders:Ryan Holtz /* VM Labs Aries 3 "NUON Multi-Media Architecture" simulator - Changelist - 10 Mar. 2018 - Initial skeleton version. */ #include "emu.h" #include "nuon.h" #include "nuondasm.h" //************************************************************************** // DEVICE INTERFACE //************************************************************************** DEFINE_DEVICE_TYPE(NUON, nuon_device, "nuon", "Aries 3 \"Nuon\"") //------------------------------------------------- // nuon_device - constructor //------------------------------------------------- nuon_device::nuon_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : cpu_device(mconfig, NUON, tag, owner, clock) , m_program_configs{{"program_mpe0", ENDIANNESS_BIG, 32, 32}, {"program_mpe1", ENDIANNESS_BIG, 32, 32}, {"program_mpe2", ENDIANNESS_BIG, 32, 32}, {"program_mpe3", ENDIANNESS_BIG, 32, 32}} { } //------------------------------------------------- // unimplemented_opcode - bail on unspuported // instruction //------------------------------------------------- void nuon_device::unimplemented_opcode(uint32_t op) { // machine().debug_break(); fatalerror("Nuon: unknown opcode (%08x) at %08x\n", op, m_pc); } 63xx'>dsp563xx MAME - Multiple Arcade Machine Emulator
summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asio/src/tests/unit/packaged_task.cpp
blob: bb44c77ce372d3be8310d9bc5808c532198fa48a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// packaged_task.cpp
// ~~~~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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)
//

// Disable autolinking for unit tests.
#if !defined(BOOST_ALL_NO_LIB)
#define BOOST_ALL_NO_LIB 1
#endif // !defined(BOOST_ALL_NO_LIB)

// Test that header file is self-contained.
#include "asio/packaged_task.hpp"

#include "unit_test.hpp"

ASIO_TEST_SUITE
(
  "packaged_task",
  ASIO_TEST_CASE(null_test)
)