From 0dbb339ca1159f3c93ea31f535323c1abe01dc06 Mon Sep 17 00:00:00 2001 From: Zack Buhman Date: Thu, 24 Aug 2023 09:01:45 +0000 Subject: [PATCH] parser: change default dma add mode to 2 --- parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.cpp b/parser.cpp index 1ded327..b1856f8 100644 --- a/parser.cpp +++ b/parser.cpp @@ -440,7 +440,7 @@ static dma::add_mode_t dma_add(const token_t& token) switch (token.type) { case _dma: [[fallthrough]]; - case _dmah: return add_mode_t::_1; + case _dmah: return add_mode_t::_2; case _dma0: [[fallthrough]]; case _dmah0: return add_mode_t::_0; case _dma1: [[fallthrough]];