From 75d48918ef2246141d9114a413130a991afaf068 Mon Sep 17 00:00:00 2001 From: Nwolisa Vincent Date: Fri, 17 Oct 2025 01:19:34 +0100 Subject: [PATCH 1/2] Assembly .gitignore file --- .gitignore | 184 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 184 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..8f26b6d651 --- /dev/null +++ b/.gitignore @@ -0,0 +1,184 @@ +# Assembly .gitignore template +# For Assembly language projects using various assemblers and toolchains +# +# Recommended: Add your OS-specific and editor-specific gitignore templates +# (e.g., Linux.gitignore, macOS.gitignore, Windows.gitignore, VisualStudio.gitignore, Vim.gitignore) + +# Object files +*.o +*.obj +*.OBJ +*.ko +*.elf + +# Executables and binary files +*.exe +*.out +*.bin +*.BIN +*.hex +*.HEX +*.app +*.axf +*.elf +*.i*86 +*.x86_64 + +# Linker output +*.map +*.MAP +*.ilk +*.exp + +# Library files +*.lib +*.a +*.la +*.lo +*.so +*.so.* +*.dylib +*.dll + +# Assembly listing files +*.lst +*.LST +*.lis +*.LIS + +# Symbol files +*.sym +*.SYM + +# NASM specific +*.nasm.tmp + +# MASM/TASM specific +*.cod +*.COD + +# Debug files +*.dbg +*.pdb +*.idb +*.dSYM/ +*.su +*.idb +*.ipdb +*.iobj + +# Preprocessor output +*.i +*.ii +*.s.preprocessed + +# Dependency files +*.d +*.dep + +# Intel HEX and other output formats +*.s19 +*.s28 +*.s37 +*.srec +*.ihex + +# Motorola S-record files +*.mot +*.mhx + +# Bootloader files +*.boot + +# Disassembly files +*.disasm +*.dis + +# Core dumps +core +core.* +*.core + +# Backup files (common in assembly editors) +*~ +*.bak +*.BAK +*.old +*.orig +*.swp +*.swo + +# Build directories +build/ +Build/ +BUILD/ +bin/ +Bin/ +BIN/ +obj/ +Obj/ +OBJ/ +out/ +output/ +Output/ +dist/ +release/ +debug/ +Debug/ +Release/ + +# IDE and assembler-specific project files +*.workspace +*.uvproj* +*.uvopt* +*.uvgui* +*.cproj +*.atsln +*.atsuo + +# Keil uVision +*.uvopt +*.uvproj +*.uvgui.* +*.uvproj.* +*.plg +*.tra +*.Administrator.* +*.bak.* + +# IAR Embedded Workbench +*.eww +*.dep +*.wsdt +*.dni +*.wspos +*.dbgdt + +# Atmel Studio +*.atsln +*.atsuo +*.cproj + +# Make generated files +*.mk +Makefile.bak + +# CMake +CMakeCache.txt +CMakeFiles/ +cmake_install.cmake + +# Tags and indexing +tags +TAGS +.tags +.tags_sorted_by_file +cscope.out +cscope.files +cscope.in.out +cscope.po.out + +# Testing artifacts +test_results/ +*.test +*.testlog \ No newline at end of file From 585719a433681a387a82ef008fb6c35f0115295b Mon Sep 17 00:00:00 2001 From: Nwolisa Vincent Date: Fri, 17 Oct 2025 01:20:36 +0100 Subject: [PATCH 2/2] Add Assembly.gitignore file --- .gitignore => Assembly.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename .gitignore => Assembly.gitignore (90%) diff --git a/.gitignore b/Assembly.gitignore similarity index 90% rename from .gitignore rename to Assembly.gitignore index 8f26b6d651..745dba7636 100644 --- a/.gitignore +++ b/Assembly.gitignore @@ -181,4 +181,5 @@ cscope.po.out # Testing artifacts test_results/ *.test -*.testlog \ No newline at end of file + +*.testlog