File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 99// Package amd64 provides support for AMD64 architecture specific operations.
1010//
1111// The following architectures/cores are supported/tested:
12- // - AMD64 (single-core )
12+ // - AMD64 (multiprocessor )
1313//
1414// This package is only meant to be used with `GOOS=tamago GOARCH=amd64` as
1515// supported by the TamaGo framework for bare metal Go, see
@@ -71,7 +71,8 @@ func halt()
7171// Fault generates a triple fault.
7272func Fault ()
7373
74- // Init performs initialization of an AMD64 core instance.
74+ // Init performs initialization of an AMD64 bootstrap processor (BSP) instance
75+ // (see [CPU.InitSMP] for AP initialization).
7576func (cpu * CPU ) Init () {
7677 runtime .Exit = exit
7778 runtime .Idle = func (pollUntil int64 ) {
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ applications on bare metal AMD64/ARM/RISC-V processors.
2424
2525The [ microvm] ( https://github.com/usbarmory/tamago/tree/master/board/firecracker/microvm )
2626package provides support for [ Firecracker microvm] ( https://firecracker-microvm.github.io/ )
27- paravirtualized Kernel-based Virtual Machine (KVM) configured with a single
28- AMD64 core .
27+ paravirtualized Kernel-based Virtual Machine (KVM) configured with single or
28+ multiple AMD64 cores .
2929
3030Documentation
3131=============
Original file line number Diff line number Diff line change @@ -24,8 +24,8 @@ applications on bare metal AMD64/ARM/RISC-V processors.
2424
2525The [ microvm] ( https://github.com/usbarmory/tamago/tree/master/board/qemu/microvm )
2626package provides support for [ QEMU microvm] ( https://www.qemu.org/docs/master/system/i386/microvm.html )
27- paravirtualized Kernel-based Virtual Machine (KVM) configured with a single
28- AMD64 core .
27+ paravirtualized Kernel-based Virtual Machine (KVM) configured with single or
28+ multiple AMD64 cores .
2929
3030Documentation
3131=============
You can’t perform that action at this time.
0 commit comments