wok
Some checks failed
Actions Testing Workflow / build (push) Failing after 21s

This commit is contained in:
Steven Tracey 2024-10-27 18:54:41 -04:00
parent 0933e66e28
commit cd4c7ac4fc
3 changed files with 19 additions and 2 deletions

View File

@ -37,8 +37,7 @@ jobs:
run: ./src/build/ActionsTesting.exe
- name: Prepare artifacts
run: |
pwd
ls
echo "Current working directory: $PWD"
Get-ChildItem -Path .\artifacts\ -Recurse | Remove-Item -force -recurse
Remove-Item .\artifacts\ -Force
$version = (Select-String -Path "build.gradle" -Pattern "version" | Where-Object { $_ -notmatch "id" -and $_ -notmatch ":" } | ForEach-Object { [regex]::Match($_, "'(.*?)'").Groups[1].Value })

1
build.bat Normal file
View File

@ -0,0 +1 @@
@echo off

17
src/main.asm Normal file
View File

@ -0,0 +1,17 @@
section .data
msg: DB 'Hello, World!', 10
msgSize EQU $ - msg
global start
section .text
start:
mov rax, 4 ; function 4
mov rbx, 1 ; stdout
mov rcx, msg ; msg
mov rdx, msgSize ; size
int 0x80 ; intercept (run)
mov rax, 1 ; function 1
mov rbx, 0 ; code
int 0x80 ; intercept (run)
ret