Kernel: Implement AML BreakOp and ContinueOp

This commit is contained in:
2024-08-15 19:08:00 +03:00
parent 51d1e47bfe
commit 1cfe3dd4da
4 changed files with 26 additions and 10 deletions

View File

@@ -173,6 +173,8 @@ namespace Kernel::ACPI
return AML::Scope::parse(context);
case AML::Byte::IfOp:
return AML::IfElse::parse(context);
case AML::Byte::BreakOp:
case AML::Byte::ContinueOp:
case AML::Byte::WhileOp:
return AML::While::parse(context);
case AML::Byte::StoreOp: