diff --git a/docs/history.txt b/docs/history.txt index 64729ae..6cf39c1 100644 --- a/docs/history.txt +++ b/docs/history.txt @@ -18,6 +18,8 @@ * added BOOTONLY option to SYS (modified by Bart) + Changes David Bolen * add support for UNC-style paths (that start with "\\") ++ Changes Luchezar Georgiev + * add Bulgarian country structure data + Changes Bart * flip some slashes in drivers/*.asm (enables cross-assembly on Linux) diff --git a/kernel/config.c b/kernel/config.c index 37cac52..bf98a11 100644 --- a/kernel/config.c +++ b/kernel/config.c @@ -2251,6 +2251,20 @@ struct CountrySpecificInfo specificCountriesSupported[] = { _TIME_24 /* = 0 # time format: 0/1: 12/24 hours */ } + /* Bulgaria - by Luchezar Georgiev */ ,{ + 359, /* = W1 W437 # Country ID & Codepage */ + 855, + _DATE_DMY, /* Date format: 0/1/2: U.S.A./Europe/Japan */ + "BGL", /* '$' ,'EUR' */ + " ", /* ',' # Thousand's separator */ + ",", /* '.' # Decimal point */ + ".", /* '-' DateSeparator */ + ":", /* ':' TimeSeparator */ + 3, /* # Currency format (bit array) */ + 2, /* = 2 # Currency precision */ + _TIME_24 /* = 0 # time format: 0/1: 12/24 hours */ + } + /* Ukraine - by Oleg Deribas */ ,{ 380, /* = W380 W848 # Country ID & Codepage */ 848, @@ -2276,6 +2290,7 @@ struct CountrySpecificInfo specificCountriesSupported[] = { Michael H.Tyc (POL) Oleg Deribas (UKR) Arkady Belousov (RUS) + Luchezar Georgiev (BUL) Yuki Mitsui (JAP) Aitor Santamar­a Merino (SP) */