Skip to content

Commit

Permalink
Изменение прав доступа
Browse files Browse the repository at this point in the history
  • Loading branch information
Aren committed Sep 30, 2023
1 parent 7a23210 commit a992b9d
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 32 deletions.
42 changes: 21 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: CI BUILD

on:
push:
branches-ignore: [ "pages" ]
pull_request:
branches-ignore: [ "pages" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: install Python3
run: sudo apt install python3
- name: build
run: python3 build.py
- name: check
run: ls -la
name: CI BUILD

on:
push:
branches-ignore: [ "pages" ]
pull_request:
branches-ignore: [ "pages" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: install Python3
run: sudo apt install python3
- name: build
run: python3 build.py
- name: check
run: ls -la
22 changes: 11 additions & 11 deletions kernel/start.cpp
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#include <limine.h>



// Точка входа
extern "C" void _start() {
asm volatile("cli");

for (;;) {
asm volatile("hlt");
}
#include <limine.h>



// Точка входа
extern "C" void _start() {
asm volatile("cli");

for (;;) {
asm volatile("hlt");
}
}

0 comments on commit a992b9d

Please sign in to comment.