Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove some unnecessary backslash line continuation #12047

Merged
merged 7 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/devices/bus/hp_dio/hp98644.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ uint16_t dio16_98644_device::io_r(offs_t offset)
break;

case 1:
ret = m_control | m_control << 8 | \
ret = m_control | m_control << 8 |
(((m_switches->read() >> REG_SWITCHES_INT_LEVEL_SHIFT) & REG_SWITCHES_INT_LEVEL_MASK) << 4);
break;

Expand Down
4 changes: 2 additions & 2 deletions src/devices/cpu/alto2/a2emu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ void alto2_cpu_device::f1_early_emu_block()
CPU_CLR_TASK_WAKEUP(m_task);
LOG((this,LOG_EMU,2, " BLOCK %02o:%s\n", m_task, task_name(m_task)));
#elif 0
throw emu_fatalerror(1, "Emulator task want's to BLOCK.\n" \
"%s-%04o: r:%02o af:%02o bs:%02o f1:%02o f2:%02o" \
throw emu_fatalerror(1, "Emulator task want's to BLOCK.\n"
"%s-%04o: r:%02o af:%02o bs:%02o f1:%02o f2:%02o"
" t:%o l:%o next:%05o next2:%05o cycle:%lld\n",
task_name(m_task), m_mpc,
m_rsel, m_daluf, m_dbs, m_df1, mdf2,
Expand Down
Loading