Skip to content

Commit

Permalink
WIP - Fixes (#1126)
Browse files Browse the repository at this point in the history
* - WIP

* - Updated QEMU (8.1.0-rc3) + Add ARM64

* - Adding ARM launch codes

* - Adding ARM launch codes

* - WIP - ARM32

* - WIP - ARM32

* - WIP - ARM32

* - WIP - ARM64

* - WIP - ARM64

* - WIP - ARM64

* - WIP - ARM64

* - WIP

* - WIP - ARM32

* - WIP

* - Fixes
  • Loading branch information
tgiphil committed Aug 17, 2023
1 parent 824be43 commit d12990e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions Source/Mosa.DeviceSystem/BaseHardwareAbstraction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public abstract class BaseHardwareAbstraction
/// <returns></returns>
public abstract ConstrainedPointer GetPhysicalMemory(Pointer address, uint size);

/// <summary>
/// Disables all interrupts.
/// </summary>
public abstract void DisableInterrupts();
Expand Down
5 changes: 2 additions & 3 deletions Source/Mosa.DeviceSystem/HAL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,15 @@ public static class HAL
/// <param name="irq">The irq.</param>
public static void ProcessInterrupt(byte irq) => handleInterrupt?.Invoke(irq);

/// <summary>

/// <summary>
/// Requests a block of memory from the kernel
/// </summary>
/// <param name="address">The address.</param>
/// <param name="size">The size.</param>
/// </summary>
/// <returns></returns>
public static ConstrainedPointer GetPhysicalMemory(Pointer address, uint size) => hardwareAbstraction.GetPhysicalMemory(address, size);

/// <summary>
/// Disables all interrupts.
/// </summary>
internal static void DisableAllInterrupts() => hardwareAbstraction.DisableInterrupts();
Expand Down

0 comments on commit d12990e

Please sign in to comment.