Изменение прав доступа

This commit is contained in:
Aren 2023-09-30 22:21:56 +03:00
parent 7a232105b8
commit a992b9df8c
2 changed files with 32 additions and 32 deletions

View File

@ -1,21 +1,21 @@
name: CI BUILD name: CI BUILD
on: on:
push: push:
branches-ignore: [ "pages" ] branches-ignore: [ "pages" ]
pull_request: pull_request:
branches-ignore: [ "pages" ] branches-ignore: [ "pages" ]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: install Python3 - name: install Python3
run: sudo apt install python3 run: sudo apt install python3
- name: build - name: build
run: python3 build.py run: python3 build.py
- name: check - name: check
run: ls -la run: ls -la

View File

@ -1,12 +1,12 @@
#include <limine.h> #include <limine.h>
// Точка входа // Точка входа
extern "C" void _start() { extern "C" void _start() {
asm volatile("cli"); asm volatile("cli");
for (;;) { for (;;) {
asm volatile("hlt"); asm volatile("hlt");
} }
} }