Skip to content

Instantly share code, notes, and snippets.

View samvasko's full-sized avatar

Samuel Vasko samvasko

View GitHub Profile
@samvasko
samvasko / C.sublime-build
Created March 19, 2013 16:55
Sublime Build configuration for C on windows using mingw-64 with working file regex
{
"cmd" : ["x86_64-w64-mingw32-gcc.exe", "$file_name", "-o", "${file_base_name}.exe"],
"selector" : "source.c",
"file_regex" : "^(..[^:]*c):([0-9]+):([0-9]+): error:(.+$)",
"shell" : true,
"working_dir" : "$file_path"
}
#include <stdio.h>
#include <reg66x.h>
#include "dispport.h"
/**
* Show current temperature and respond to user input
* Samuel Vasko 2.11.2012
*/
main()