summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/pps41/mm78.cpp
Commit message (Expand)AuthorAgeFilesLines
* hmcs400: add opcode placeholders hap2024-09-161-1/+2
* b5000: added easy opcodes hap2022-03-181-1/+1
* pps41: add part number to description hap2022-03-171-4/+4
* hh_hmcs40: improved bpengo svg [hap, eggs] hap2021-08-161-1/+1
* pps41: add preliminary mm78la/mm77la hap2021-03-191-4/+4
* New working machines hap2021-03-091-1/+1
* pps41: added some mm78 opcodes (untested) hap2021-03-081-0/+107
* pps41: added mm78 disasm and mm77/mm78 skeleton device hap2021-03-081-0/+109
und-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
// license:BSD-3-Clause
// copyright-holders:Olivier Galibert
/***************************************************************************

    m6507.cpp

    MOS Technology 6502, NMOS variant with reduced address bus

    28-pin package, address bus is 13 bits, no NMI, no SO, no SYNC.

***************************************************************************/

#include "emu.h"
#include "m6507.h"

DEFINE_DEVICE_TYPE(M6507, m6507_device, "m6507", "MOS Technology 6507")

m6507_device::m6507_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
	m6502_device(mconfig, M6507, tag, owner, clock)
{
	program_config.m_addr_width = 13;
	program_config.m_logaddr_width = 13;
	sprogram_config.m_addr_width = 13;
	sprogram_config.m_logaddr_width = 13;
}