Added Windows PE support

This commit is contained in:
2024-08-13 14:07:40 +02:00
parent b90ee62b98
commit 7b1a293cd0
20 changed files with 373 additions and 103 deletions

View File

@ -6,6 +6,7 @@ import (
"io"
"git.akyoto.dev/cli/q/src/config"
"git.akyoto.dev/cli/q/src/os/common"
)
// ELF represents an ELF file.
@ -22,7 +23,7 @@ type ELF struct {
// New creates a new ELF binary.
func New(code []byte, data []byte) *ELF {
dataOffset := config.CodeOffset + int64(len(code))
dataPadding := Padding(dataOffset, config.Align)
dataPadding := common.Padding(dataOffset, config.Align)
dataOffset += dataPadding
return &ELF{