// 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
floppysound
hlsl_aviplay
lisa
lua_engine_ui_refactor_2
make_coco_fdc_fixed
master
n64-angrylion
netlist-generated
new_menus
nl-splitfrogs
nl_dips
nltool-updates
py_regtests
release0288
rendlay_vid
s23-firewire
saturn_cdblock
saturn_vdp_split
save-experiments
save_structs
script-eof-marker
shangha3_drop
taitoair_vco
taitotz-pixxiii
taitowlf_zoom
time-experiments
time-experiments2
voodoo_directx11
x86_std-exceptions
xbox_swlist
xtal
ymfm-delay
MAME - Multiple Arcade Machine Emulator
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 )
)