From dfc1565b5369f48bc2a80f659f30b2b21ed1173b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Casal?= Date: Thu, 9 May 2024 09:52:32 +0100 Subject: [PATCH] correct typo --- app/routes/_pseo+/subject-data.ts | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/app/routes/_pseo+/subject-data.ts b/app/routes/_pseo+/subject-data.ts index ed1000d..9f4afcc 100644 --- a/app/routes/_pseo+/subject-data.ts +++ b/app/routes/_pseo+/subject-data.ts @@ -78,7 +78,7 @@ export const subjects: Subject[] = [ }, { slug: 'arquitetura-de-computadores', - name: 'Arquiteura de Computadores', + name: 'Arquitetura de Computadores', prerequisites: ['Sistemas Digitais'], topics: [ { @@ -128,4 +128,24 @@ export const subjects: Subject[] = [ }, ], }, + { + slug: 'sistemas-operativos', + name: 'Sistemas Operativos', + prerequisites: ['Sistemas Digitais', 'Arquitetura de Computadores'], + topics: [ + + ], + resources: [ + { + name: 'Organização para Arquitetura de Computadores', + link: arquiteturaDeComputadores, + }, + ], + software: [ + { + name: 'MARS', + link: 'https://courses.missouristate.edu/kenvollmar/mars/download.htm', + }, + ], + }, ]